php 读取twitter feed的解决办法
内容摘要
这篇文章主要为大家详细介绍了php 读取twitter feed的简单示例,具有一定的参考价值,可以用来参考一下。
对php读取twitter feed对此感兴趣的朋友,看看idc笔记做的技术笔记!
<?
对php读取twitter feed对此感兴趣的朋友,看看idc笔记做的技术笔记!
<?
文章正文
这篇文章主要为大家详细介绍了php 读取twitter feed的简单示例,具有一定的参考价值,可以用来参考一下。
对php读取twitter feed对此感兴趣的朋友,看看idc笔记做的技术笔记!
<?php
/**
* php读取twitter feed
*
* @param
* @author php教程 www.idcnote.com
**/
class Twitter{
protected $twitURL = 'http://api.twitter.com/1/';
protected $xml;
protected $tweets = array(), $twitterArr = array();
protected $pversion = "1.0.0";
public function pversion(){
return $this->pversion;
}
public function loadTimeline($user, $max = 20){
$this->twitURL .= 'statuses/user_timeline.xml?screen_name='.$user.'&count='.$max;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->twitURL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$this->xml = curl_exec($ch);
return $this;
}
public function getTweets(){
$this->twitterArr = $this->getTimelineArray();
$tweets = array();
foreach($this->twitterArr->status as $status){
$tweets[$status->created_at->__toString()] = $status->text->__toString();
}
return $tweets;
}
public function getTimelineArray(){
return simplexml_load_string($this->xml);
}
public function formatTweet($tweet){
$tweet = preg_replace("/(http(.+?))( |$)/","<a href=\"$0\">$1</a>$3", $tweet);
$tweet = preg_replace("/#(.+?)(\h|\W|$)/", "<a href=\"https://twitter.com/i/#!/search/?q=%23$1&src=hash\">#$1</a>$2", $tweet);
$tweet = preg_replace("/@(.+?)(\h|\W|$)/", "<a href=\"http://twitter.com/#!/$1\">@$1</a>$2", $tweet);
return $tweet;
}
}
/*** 来自php教程(www.idcnote.com) ***/
注:关于php 读取twitter feed的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释