php simplexml-load-file解析了php

时间:2012-09-17 11:32:03

标签: php xml

我在我的剧本中使用它:

$xml = file_get_contents('gapi.account.php');
print_r($xml);

简单,对吧?

但是现在......没有解析gapi.account.php,怎么做?解析文件的输出是xml。

谢谢!

2 个答案:

答案 0 :(得分:0)

你需要从外面获取文件,让它运行:

$xml = file_get_contents('http://www.example.org/gapi.account.php');
print_r($xml);

答案 1 :(得分:0)

file_get_contents不会执行您提取的任何内容。服务器实际上是这样做的,因此您必须在服务器上调用file_get_contents('http://mydomain.com/gapi.account.php');

作为文件