Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17211 программистов и 1835 роботов. Сейчас ищут 1598 программистов ...

Example

Вернуться к: Services_Delicious

Example

Example – Basic examples of Services_Delicious

The following examples show how to use some basic features of Services_Delicious:

Fetching your recent posts

<?php
require_once 'Services/Delicious.php';
    
$dlc = &new Services_Delicious($username$password);

$posts $dlc->getRecentPosts();
echo 
'<pre>';
print_r($posts);
echo 
'</pre>';
?>

Getting all tags that you used in your bookmarks

<?php
require_once 'Services/Delicious.php';
    
$dlc = &new Services_Delicious($username$password);

$tags $dlc->getTags();
echo 
'<pre>';
print_r($tags);
echo 
'</pre>';
?>

Adding a new bookmark

<?php
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';
}
?>


Вернуться к: Services_Delicious

© 2024 «PHP.RU — Сообщество PHP-Программистов»
Главная | Форум | Реклама на сайте | Контакты VIP Сувениры
Разработка компании ODware