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状态的主要内容,如果未能解决你的问题,请参考以下文章