例 -- Services_Google の基本的な使用法
Services_Google の基本的な使用法
Services_Google の基本機能の使用例を以下に示します。
例 67-1Google で PEAR を検索 require_once 'Services/Google.php';
$google = new Services_Google($key);
$google->queryOptions['limit'] = 30;
$google->search("PEAR");
foreach ($google as $key => $result) {
echo "$key]\t$result->title\n";
} |
|
例 67-2スペルチェック require_once 'Services/Google.php';
$google = new Services_Google($key);
echo $google->spellingSuggestion("wahll")."\n"; |
|