使用PHP和XML检索Twitter状态

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用PHP和XML检索Twitter状态相关的知识,希望对你有一定的参考价值。

This is the beginning of my retrieval of twitter status class...just something im playing with right now. It retrieves the xml, saves it on your server, then you can either use javascript or php to traverse the xml tree.
  1. <?php
  2.  
  3. class xmlmanager{
  4.  
  5. private $twitterXML;
  6. private $twitterURL = ""; //insert xml url here
  7. private $dom;
  8.  
  9. function __construct(){
  10.  
  11. }
  12.  
  13. function GetTwitterXML(){
  14.  
  15. $this->twitterXML = simplexml_load_file($this->twitterURL);
  16.  
  17. return ;
  18.  
  19. }
  20.  
  21. function save_twitter_xml_as_file(){
  22. $this->dom = new DOMDocument();
  23. $this->dom->loadXML($this->twitterXML->asXML());
  24. $this->dom->saveXML();
  25. $this->dom->save('mytwitter.xml');
  26. return ;
  27. }
  28.  
  29. function __destruct(){
  30.  
  31. }
  32. }
  33.  
  34. ?>

以上是关于使用PHP和XML检索Twitter状态的主要内容,如果未能解决你的问题,请参考以下文章

来自 Twitter 的 PHP XML 提要使用情况

获取最新Twitter状态

使用 PHP 获取我最新的 Twitter 帖子

PHP 从php检索Twitter信息

将片段中的Firebase信息检索到recyclerview中

从php检索Twitter信息