PHP 使用PHP和XML检索Twitter状态

Posted

tags:

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

<?php

class xmlmanager{
	
	private $twitterXML;
	private $twitterURL = ""; //insert xml url here
	private $dom;
	
	function __construct(){
	
	}
	
	function GetTwitterXML(){
		
		$this->twitterXML = simplexml_load_file($this->twitterURL);
		
		return ;
		
	}
	
	function save_twitter_xml_as_file(){
		$this->dom = new DOMDocument();
		$this->dom->loadXML($this->twitterXML->asXML());
		$this->dom->saveXML();
		$this->dom->save('mytwitter.xml');
		return ;
	}
	
	function __destruct(){
	
	}
}

?>

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

PHP 从php检索Twitter信息

PHP 如何在没有oAuth的情况下使用php和Curl更改Twitter的状态

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

从php检索Twitter信息

PHP 使用PHP获取最新的Twitter状态

获取最新Twitter状态