例
<?php
require_once 'Services/Blogging.php';
$bl = Services_Blogging::factory(
'metaWeblog',
'username', 'password',
'http://blog.example.com', '/xmlrpc.php'
);
$post = $bl->createNewPost();
//$post->setId('14');
$post->title = '投稿のタイトル';
$post->content = "これは、Services_Blogging"
. " による投稿の更新のテストです\r\n\r\n二行目\r\n三行目";
$post->categories = array('カテゴリ1', 'カテゴリ3');
$bl->savePost($post);
$nLastPostId = $post->id;
echo 'post id: ' . $nLastPostId . "\r\n";
//$bl->deletePost(17);
var_dump($bl->getPost($nLastPostId));
var_dump($bl->getRecentPostTitles(2));
var_dump($bl->getRecentPosts());
?>