您好,登錄后才能下訂單哦!
這篇文章給大家介紹PHP中怎么利用CutyCapt抓取保存網(wǎng)頁URL,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
1、準(zhǔn)備工具
CutyCapt文件;
php開發(fā)運行環(huán)境。
2、方法/步驟
//設(shè)置運行不超時;
header("Content-Type:text/html; charset=utf-8");set_time_limit(0);
//設(shè)置抓取網(wǎng)址
$url="http://www.nongyejing.com";
//設(shè)置圖片名稱(以當(dāng)前時間戳命名)
$time=time();
//設(shè)置圖片輸出地址
$outdir = 'E:/BaseServer/htdocs/curlImg/'.$time.".png";
//CutyCapt絕對路徑
$path = 'E:/BaseServer/htdocs/CutyCapt.exe';
//命令
$cmd = "$path --url=$url --out=$outdir";
完整代碼:
header("Content-Type:text/html; charset=utf-8");
set_time_limit(0);
//抓取網(wǎng)址
$url="http://www.nongyejing.com/static/php/2014/1222/75.html";
//設(shè)置圖片名稱
$time=time();
//設(shè)置圖片輸出地址
$outdir = 'E:/BaseServer2/htdocs/curlImg/'.$time.".png";
//CutyCapt絕對路徑
$path = 'E:/BaseServer2/htdocs/CutyCapt.exe';
//命令
$cmd = "$path --url=$url --out=$outdir";
//執(zhí)行命令
exec($cmd);
echo "圖片抓取成功!";
補充:報錯:exec() has been disabled for security reasons in 意思是exec() 函數(shù)已經(jīng)由于安全原因被禁止。
說明:這是因為在 php.ini 配置文件里面有disable_function 這個選項 后面是禁用的php函數(shù),打開PHP.INI,找到disable_function=phpinfo,passthru,exec,system,popen,escapeshellcmd,escapeshellarg,shell_exec
解決方法:
打開php安裝路徑 打開php.ini文件
則把disable_function=phpinfo,passthru,exec,system,popen,escapeshellcmd,escapeshellarg,shell_exec
里面的 exec, 刪除 并保存 重啟php-fcgi
我使用的是lnmp一鍵安裝包,只要/root/lnmp reload即可。
關(guān)于PHP中怎么利用CutyCapt抓取保存網(wǎng)頁URL就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。