這是非常基本的,我敢肯定,但我沒有使用過PHP,因此發現它很難,我使用的代碼給了我一個錯誤,我不確定我能做什麼解決它PHP代碼中的錯誤
<?php
$query = 'dogs';
$searches = 100; // number of results
$start = 0;
$pos = 1;
while($start < $searches)
{
$data = getPage('http://www.google.com/search?start=' . $start . '&q=' . urlencode($query));
preg_match_all("/\<li class\=g\>\<h3 class\=\"r\"\>\<a href\=\"([^\<\>]*)\" class\=l\>/",$data,$matches);
for($x = 0; $x < count($matches[1]); $x++)
{
echo '<p>' . $pos . ' ' . ($matches[1][$x]) . '</p>';
$pos++;
}
$start += 10;
}
?>
錯誤: 呼叫到第11行
任何幫助未定義功能GETPAGE()?
你有'getPage()'定義的任何地方嗎?它是否在您忘記包含的另一個文件中? – PureForm