これは非常に基本的なものですが、私はこれまで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;
}
?>
エラー:行に未定義関数へ コールGETPAGE()11
任意のヘルプ?
'getPage()'はどこに定義されていますか?あなたが含むことを忘れた別のファイルですか? – PureForm