嗨,任何人都可以幫助我如何從網頁內容中選擇特定的div。使用CURL從外部網頁選擇特定的div
比方說,我想從網頁http://www.test.com/page3.php
得到id="wrapper_content"
的div。
我當前的代碼看起來是這樣的:(不工作)
//REG EXP.
$s_searchFor = '@^/.dont know what to put [email protected]';
//CURL
$ch = curl_init();
$timeout = 5; // set to zero for no timeout
curl_setopt ($ch, CURLOPT_URL, 'http://www.test.com/page3.php');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
if(!preg_match($s_searchFor, $ch))
{
$file_contents = curl_exec($ch);
}
curl_close($ch);
// display file
echo $file_contents;
所以,我想知道我可以使用reg表達式中找到特定的div以及如何未設置其餘該網頁使$file_content
只包含div。
str_get_html()函數未定義。爲什麼? – huykon225 2017-08-23 09:53:46