首页 > 开发 > PHP > 正文

PHP封装的Twitter访问类实例

2024-05-04 23:37:54
字体:
来源:转载
供稿:网友

这篇文章主要介绍了PHP封装的Twitter访问类,通过curl调用实现针对Twitter的常用访问功能,具有一定参考借鉴价值,需要的朋友可以参考下

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

 

 
  1. class Twitter { 
  2. /** 
  3. * Method to make twitter api call for the users timeline in XML 
  4. * 
  5. * @access private 
  6. * @param $twitter_id, $num_of_tweets 
  7. * @return $xml 
  8. */ 
  9. private function api_call($twitter_id, $num_of_tweets) { 
  10. $c = curl_init(); 
  11. curl_setopt($c, CURLOPT_URL, "http://twitter.com/statuses/user_timeline/$twitter_id.xml?count=$num_of_tweets"); 
  12. curl_setopt($c, CURLOPT_RETURNTRANSFER, 1); 
  13. curl_setopt($c, CURLOPT_CONNECTTIMEOUT, 3); 
  14. curl_setopt($c, CURLOPT_TIMEOUT, 5); 
  15. $response = curl_exec($c); 
  16. $response_info = curl_getinfo($c); 
  17. curl_close($c); 
  18. if (intval($response_info['http_code']) == 200) { 
  19. $xml = new SimpleXMLElement($response); 
  20. return $xml; 
  21. else { 
  22. return false
  23. /** 
  24. * Method to add hyperlink html tags to any urls, twitter ids or hashtags in tweet 
  25. * 
  26. * @access private 
  27. * @param $text 
  28. * @return $text 
  29. */ 
  30. private function process_links($text) { 
  31. $text = utf8_decode($text); 
  32. $text = preg_replace('@(https?://([-/w/.]+)+(d+)?(/([/w/_/.]*(/?/S+)?)?)?)@''<a href="$1">$1</a>', $text); 
  33. $text = preg_replace("#(^|[/n ])@([^ /"/t/n/r<]*)#ise""'//1<a href=/"http://www.twitter.com///2/" >@//2</a>'", $text); 
  34. $text = preg_replace("#(^|[/n ])/#([^ /"/t/n/r<]*)#ise""'//1<a href=/"http://hashtags.org/search?query=//2/" >#//2</a>'", $text); 
  35. return $text; 
  36. /** 
  37. * Main method to retrieve the tweets and return html for display 
  38. * 
  39. * @access public 
  40. * @param $twitter_id, $num_of_tweets, $timezone 
  41. * @return $result 
  42. */ 
  43. public function get_tweets($twitter_id, $num_of_tweets = 3, $timezone = "America/Denver") { 
  44. $include_replies = false
  45. date_default_timezone_set($timezone); 
  46. // the html markup 
  47. $cont_o = "<div id=/"tweets/">/n"
  48. $tweet_o = "<div class=/"status/">/n"
  49. $tweet_c = "</div>/n/n"
  50. $detail_o = "<div class=/"details/">/n"
  51. $detail_c = "</div>/n/n"
  52. $cont_c = "</div>/n"
  53. if ($twitter_xml = $this->api_call($twitter_id, $num_of_tweets)) { 
  54. $result = $cont_o; 
  55. foreach ($twitter_xml->status as $key => $status) { 
  56. if ($include_replies == true | substr_count($status->text, "@") == 0 | strpos($status->text, "@") != 0) { 
  57. $tweet = $this->process_links($status->text); 
  58. $result .= $tweet_o . $tweet . $tweet_c . $detail_o . date('D jS M y H:i', strtotime($status->created_at)) . $detail_c; 
  59. $result .= $cont_c; 
  60. else { 
  61. $result .= $cont_o . $tweet_o . "Twitter seems to be unavailable at the moment." . $tweet_c . $cont_c; 
  62. return $result; 

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表