概述
<?php // Plug-in 58: Get Tweets
/*
* 插件说明:
* 插件从一个公开的Twitter用户中读取最后20条Tweet消息。
* 接受一个Twitter账户的用户名,如果它是公开的,则返回它最近的Tweet消息。
* 访问成功,则返回一个两元素的数组,其中第一个元素表示Tweet消息的个数,第二个元素包含一个数组,保存每个Tweet消息。
* 访问失败,则返回只有一个元素的数组,这个元素的值为FALSE。它需要以下参数:
* $user Twitter用户名。
*/
// This is an executable example with additional code supplied
// To obtain just the plug-ins please click on the Download link
$user = 'eminem';
$result = PIPHP_GetTweets($user);
echo "Viewing '$user':<br /><ul>";
if (!$result[0]) echo 'Failed';
else
for ($j = 0 ; $j < $result[0] ; ++$j)
echo "<li>" . $result[1][$j] . "</li>";
function PIPHP_GetTweets($user)
{
// Plug-in 58: Get Tweets
//
// This plug-in returns the most recent 20 tweets of a Twitter
// user. The argument required is:
//
// $user: Twitter username
//
// Upon success the plug-in returns a two element array, the
// first of which contains the number of tweets returned, and
// the second is an array of the tweets. On failure a single
// element array is returned with the value FALSE.
$url = "http://twitter.com/statuses/user_timeline/$user.xml";
$file = @file_get_contents($url);
if (!strlen($file)) return array(FALSE);
$xml = @simplexml_load_string($file);
if ($xml == FALSE) return array(FALSE);
$tweets = array();
foreach ($xml->status as $tweet)
{
$timestamp = strtotime($tweet->created_at);
$tweets[] = "(" . date("M jS, g:ia", $timestamp) . ") " .
$tweet->text;
}
return array(count($tweets), $tweets);
}
?>
最后
以上就是优美期待为你收集整理的插件58:接收tweet消息的全部内容,希望文章能够帮你解决插件58:接收tweet消息所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复