Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18784 программиста и 1632 робота. Сейчас ищут 1760 программистов ...
Example
Вернуться к: Services_Google
Example
Example – Basic examples of Services_Google
The following examples show how to use some basic features of Services_Google:
Search Google for PEAR
<?php
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";
}
?>
Spell Checking
<?php
require_once 'Services/Google.php';
$google = new Services_Google($key);
echo $google->spellingSuggestion("wahll")."\n";
?>
Вернуться к: Services_Google