程式碼
複製程式碼 程式碼如下:
$url = 'www.baidu.com'; //抓取百度
echo snapshot($url); //輸出結果為圖片位址
echo snapshot($url, './baidu.png'); //將圖片儲存至本地baidu.png , 輸出內容圖片大小
/**
* 產生網頁快照
*
* @param string $site 目標位址
* @param string $path 儲存位址, 為空則不儲存
* @param integer $dealy 延遲
* @return mixed 依參數回傳
*/
function snapshot($site, $path = '', $dealy = 0)
{
$url = 'http:/ /ppt.cc/yo2/catch.php';
$query = 'url=' . $site . '&delay=' . $dealy . '&rnd=' . mt_rand(1, 9);
$ ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $query);
curl_setopt($ER_ER_setop ']);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close($ch);
if (strlen($data) != 32) {
exit('無效網址');
}
$file = $data{0} . '/' . $data{1} . '/' . $data{2} . '/';
$file = 'http://cache.ppt.cc/' . $file . 'src_' . $data . '.png';
if (!empty($path)) {
$data = file_get_contents($file);
return file_put_contents($path, $data);
}
return $file;
}
?>
return $file;
?>
以上就介紹了網頁快照在哪 PHP生成網頁快照 不用COM不用擴展,包括了網頁快照在哪方面的內容,希望對PHP教程有興趣的朋友有所幫助。