php當(dāng)中可以使用curl進(jìn)行http操作茶没。核心使用到4個(gè)函數(shù)
curl_init()
對(duì)curl操作進(jìn)行初始化
curl_setopt()
為curl操作設(shè)定參數(shù)
curl_exec
執(zhí)行curl操作
curl_close
關(guān)閉curl操作
<?php
$ch = curl_init("http://www.example.com/");
$fp = fopen("example_homepage.txt", "w");
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
?>
上面是一個(gè)基本的使用curl讀取一個(gè)網(wǎng)頁(yè)并保存的例子界拦。