我在名为 abc.php 的文件中有这个,这将返回一个有效的 xml 文档,而不是在末尾显示 -string- 标签并开始
header('Content-type: application/xml');
$xml = file_get_contents("http://www.xxx.asmx/test?id=1"); //External web service
$xmlstr = simplexml_load_string($xml);
echo $xmlstr;
我想使用 abc.php 的有效 xml 数据,提取某些数据,将其存储在我的数据库中,并定期检查另一台服务器的输出,我试过这个:
ob_start();
include 'abc.php';
$result = ob_get_clean()
还有这个:
$xml = file_get_contents("abc.php");
$xmlstr = simplexml_load_string($xml);
没有成功,有什么建议吗?