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

Example

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

Posting an entry

<?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 'Modified post title';
$post->content "This is a modified test post by"
               
" Services_Blogging\r\n\r\nSecond line\r\nThird one";
$post->categories = array('cat1''cat3');

$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());

?>


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

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