如何使用CakePHP APP类从URL加载XML文件?

时间:2009-01-29 17:17:43

标签: php xml cakephp

我正在使用CakePHP XmlHelper来解析XML文件,如:

App::import('Xml');
$file = "my_xml_file.xml";
$parsed_xml =& new XML($file);

如何使用它从http://www.site.com/file.xml

等网址加载XML文件

谢谢!

2 个答案:

答案 0 :(得分:4)

很简单

App::import('Xml');
$url = "http://www.example.com/xml_file.xml";
$parsed_xml =& new XML($url);

只需使用URL而不是文件,Cake将在内部选择打开文件的方式

答案 1 :(得分:1)

$contents = file_get_contents("http://www.site.com/file.xml");
$file = fopen("temp.xml", "rb");
fwrite($file, $contents);
fclose($file);
unset($contents)

App::import('Xml');
$file = "temp.xml";
$parsed_xml =& new XML($file);

:)