本文整理汇总了PHP中Zend_Gdata::newContent方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Gdata::newContent方法的具体用法?PHP Zend_Gdata::newContent怎么用?PHP Zend_Gdata::newContent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Gdata
的用法示例。
在下文中一共展示了Zend_Gdata::newContent方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: post
public function post($param)
{
$asin = $xml->Items->Item->ASIN;
$title = $param['title'];
$content = $param['content'];
$keyword = $param['keyword'];
/* Post to Blogger */
$client = Zend_Gdata_ClientLogin::getHttpClient($param['email'], $param['password'], 'blogger', null, Zend_Gdata_ClientLogin::DEFAULT_SOURCE, null, null, Zend_Gdata_ClientLogin::CLIENTLOGIN_URI, 'GOOGLE');
$gdClient = new Zend_Gdata($client);
$query = new Zend_Gdata_Query('http://www.blogger.com/feeds/default/blogs');
$feed = $gdClient->getFeed($query);
$uri = 'http://www.blogger.com/feeds/' . $param['blog_id'] . '/posts/default';
$entry = $gdClient->newEntry();
$entry->title = $gdClient->newTitle($title);
$entry->content = $gdClient->newContent($content);
$entry->content->setType('text');
$createdPost = $gdClient->insertEntry($entry, $uri);
$idText = split('-', $createdPost->id->text);
$url = $createdPost->link[4]->href;
$newPostID = $idText[2];
return $newPostID;
}
示例2:
<?php
require_once 'Zend/Loader.php';
Zend_Loader::loadClass('Zend_Gdata');
Zend_Loader::loadClass('Zend_Gdata_ClientLogin');
$username = 'user@example.com';
$password = 'password';
$service = 'blogger';
$client = Zend_Gdata_ClientLogin::getHttpClient($username, $password, $service);
$gdata = new Zend_Gdata($client);
$entry = $gdata->newEntry();
$category = $gdata->newCategory();
$category->setScheme('http://www.blogger.com/atom/ns#');
$category->setTerm('Test Label');
$entry->setCategory(array($category));
$content = $gdata->newContent();
$content->setText("Hello world");
$entry->setContent($content);
$gdata->insertEntry($entry, "http://www.blogger.com/feeds/8273578352962669317/posts/default");