PHP封装的Twitter访问类实例


Posted in PHP onJuly 18, 2015

本文实例讲述了PHP封装的Twitter访问类。分享给大家供大家参考。具体如下:

class Twitter {
 /**
  * Method to make twitter api call for the users timeline in XML
  *
  * @access private
  * @param $twitter_id, $num_of_tweets
  * @return $xml
  */
 private function api_call($twitter_id, $num_of_tweets) {
  $c = curl_init();
  curl_setopt($c, CURLOPT_URL, "http://twitter.com/statuses/user_timeline/$twitter_id.xml?count=$num_of_tweets");
  curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt($c, CURLOPT_CONNECTTIMEOUT, 3);
  curl_setopt($c, CURLOPT_TIMEOUT, 5);
  $response  = curl_exec($c);
  $response_info = curl_getinfo($c);
  curl_close($c);
  if (intval($response_info['http_code']) == 200) {
   $xml = new SimpleXMLElement($response);
   return $xml;
  } else {
   return false;
  }
 }
 /**
  * Method to add hyperlink html tags to any urls, twitter ids or hashtags in tweet
  *
  * @access private
  * @param $text
  * @return $text
  */
 private function process_links($text) {
  $text = utf8_decode($text);
  $text = preg_replace('@(https?://([-\w\.]+)+(d+)?(/([\w/_\.]*(\?\S+)?)?)?)@', '<a href="$1">$1</a>', $text);
  $text = preg_replace("#(^|[\n ])@([^ \"\t\n\r<]*)#ise", "'\\1<a href=\"http://www.twitter.com/\\2\" >@\\2</a>'", $text);
  $text = preg_replace("#(^|[\n ])\#([^ \"\t\n\r<]*)#ise", "'\\1<a href=\"http://hashtags.org/search?query=\\2\" >#\\2</a>'", $text);
  return $text;
 }
 /**
  * Main method to retrieve the tweets and return html for display
  *
  * @access public
  * @param $twitter_id, $num_of_tweets, $timezone
  * @return $result
  */
 public function get_tweets($twitter_id, $num_of_tweets = 3, $timezone = "America/Denver") {
  $include_replies = false;
  date_default_timezone_set($timezone);
  // the html markup
  $cont_o  = "<div id=\"tweets\">\n";
  $tweet_o = "<div class=\"status\">\n";
  $tweet_c = "</div>\n\n";
  $detail_o = "<div class=\"details\">\n";
  $detail_c = "</div>\n\n";
  $cont_c  = "</div>\n";
  if ($twitter_xml = $this->api_call($twitter_id, $num_of_tweets)) {
   $result  = $cont_o;
   foreach ($twitter_xml->status as $key => $status) {
    if ($include_replies == true | substr_count($status->text, "@") == 0 | strpos($status->text, "@") != 0) {
     $tweet = $this->process_links($status->text);
     $result .= $tweet_o . $tweet . $tweet_c . $detail_o . date('D jS M y H:i', strtotime($status->created_at)) . $detail_c;
    }
   }
   $result  .= $cont_c;
  } else {
   $result  .= $cont_o . $tweet_o . "Twitter seems to be unavailable at the moment." . $tweet_c . $cont_c;
  }
  return $result;
 }
}

希望本文所述对大家的php程序设计有所帮助。

PHP 相关文章推荐
Win2003服务器安全加固设置--进一步提高服务器安全性
May 23 PHP
PHP 页面跳转到另一个页面的多种方法方法总结
Jul 07 PHP
php set_time_limit(0) 设置程序执行时间的函数
May 26 PHP
javascript,php获取函数参数对象的代码
Feb 03 PHP
PHP安全配置详细说明
Sep 26 PHP
解析php dirname()与__FILE__常量的应用
Jun 24 PHP
php检测网页是否被百度收录的函数代码
Oct 09 PHP
PHP中使用memcache存储session的三种配置方法
Apr 05 PHP
PHP的foreach中使用引用时需要注意的一个问题和解决方法
May 29 PHP
php之Smarty模板使用方法示例详解
Jul 08 PHP
php递归实现无限分类的方法
Jul 28 PHP
PHP实现数组根据某个字段进行水平合并,横向合并案例分析
Oct 08 PHP
PHP+Javascript实现在线拍照功能实例
Jul 18 #PHP
thinkphp autoload 命名空间自定义 namespace
Jul 17 #PHP
简单谈谈PHP vs Node.js
Jul 17 #PHP
php+html5基于websocket实现聊天室的方法
Jul 17 #PHP
php获取错误信息的方法
Jul 17 #PHP
PHP实现C#山寨ArrayList的方法
Jul 16 #PHP
PHP计算加权平均数的方法
Jul 16 #PHP
You might like
一个简单的自动发送邮件系统(一)
2006/10/09 PHP
PHP封装的数据库模型Model类完整示例【基于PDO】
2019/03/14 PHP
document 和 document.all 分别什么时候用
2006/06/22 Javascript
JavaScript入门教程(1) 什么是JS
2009/01/31 Javascript
javascript获得CheckBoxList选中的数量
2009/10/27 Javascript
js冒泡法和数组转换成字符串示例代码
2013/08/14 Javascript
Node.js开源应用框架HapiJS介绍
2015/01/14 Javascript
Jquery树插件zTree用法入门教程
2015/02/17 Javascript
javascript实现根据3原色制作颜色选择器的方法
2015/07/17 Javascript
JavaScript对Cookie进行读写操作实例
2015/07/25 Javascript
jQuery使用$.ajax进行异步刷新的方法(附demo下载)
2015/12/04 Javascript
DropDownList实现可输入可选择(两种版本可选)
2016/12/07 Javascript
微信小程序(六):列表上拉加载下拉刷新示例
2017/01/13 Javascript
用javascript获取任意颜色的更亮或更暗颜色值示例代码
2017/07/21 Javascript
使用Vue-Router 2实现路由功能实例详解
2017/11/14 Javascript
JavaScript 中使用 Generator的方法
2017/12/29 Javascript
JavaScript中call和apply方法的区别实例分析
2018/08/03 Javascript
javascript中数组的常用算法深入分析
2019/03/12 Javascript
javascript this指向相关问题及改变方法
2020/11/19 Javascript
Python中用startswith()函数判断字符串开头的教程
2015/04/07 Python
Python面向对象编程基础解析(二)
2017/10/26 Python
高质量Python代码编写的5个优化技巧
2017/11/16 Python
python设置值及NaN值处理方法
2018/07/03 Python
django admin后管定制-显示字段的实例
2020/03/11 Python
pytorch 限制GPU使用效率详解(计算效率)
2020/06/27 Python
python hmac模块验证客户端的合法性
2020/11/07 Python
python字典与json转换的方法总结
2020/12/28 Python
CSS3实现千变万化的文字阴影text-shadow效果设计
2016/04/26 HTML / CSS
行政经理岗位职责
2013/11/09 职场文书
大学生表扬信范文
2014/01/09 职场文书
学生会主席事迹材料
2014/01/28 职场文书
学习决心书
2014/03/11 职场文书
英语课前三分钟演讲稿
2014/08/19 职场文书
申报优秀教师材料
2014/12/16 职场文书
2016年心理学教育培训学习心得体会
2016/01/12 职场文书
2016年五一国际劳动节活动总结
2016/04/06 职场文书