例 -- Services_Delicious の基本的な例
Services_Delicious の基本的な例
Services_Delicious の基本的な特徴をどうのように使用するか、その例を以下に示します。
例 67-1Fetching your recent posts require_once 'Services/Delicious.php';
$dlc = &new Services_Delicious($username, $password);
$posts = $dlc->getRecentPosts();
echo '<pre>';
print_r($posts);
echo '</pre>'; |
|
例 67-2あなたの使用するブックマークから全てのタグを取得します。 require_once 'Services/Delicious.php';
$dlc = &new Services_Delicious($username, $password);
$tags = $dlc->getTags();
echo '<pre>';
print_r($tags);
echo '</pre>'; |
|
例 67-3新しいブックマークを加えます。 require_once 'Services/Delicious.php';
$dlc = &new Services_Delicious($username, $password);
$result = $dlc->addPost('http://pear.php.net', 'PEAR', 'The PHP Extension and Application Repository', 'php');
if (PEAR::isError($result)) {
die($result->getMessage());
} else {
echo 'Success';
} |
|