从php检索Twitter信息
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从php检索Twitter信息相关的知识,希望对你有一定的参考价值。
php function of mini bot class that lets you retrieve twitter infos from twitter nickname.($this->attr method is part of the Mini Bot Class)
/* this function is part of the Mini Bot Class */ // // get twitter infos from nickname // and get avatar url public function twitterInfo($nick) { $user_agent = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)"; if ($this->attr($spans[0][$i],"id")=="following_count") $o['following'] = $spans[1][$i]; if ($this->attr($spans[0][$i],"id")=="follower_count") $o['follower'] = $spans[1][$i]; if ($this->attr($spans[0][$i],"id")=="lists_count") $o['lists'] = $spans[1][$i]; } $o['avatar'] = ""; for ($i=0;$i<count($t[0]);$i++) if (attr($t[0][$i],"id")=="profile-image") $o['avatar'] = attr($t[0][$i],"src"); return $o; }
以上是关于从php检索Twitter信息的主要内容,如果未能解决你的问题,请参考以下文章
将使用 Python 从 Twitter 检索到的数据保存到文本文件中?