1

我设法清理了我的 xml,但是当我显示数据时,所有标签都显示,但是带有 URL 的标签TempImageURL在我回显时不显示 url。

我的 xml

<?xml version="1.0" encoding="utf-8"?>
<lists>
    <Property>
        <Reference>123123</Reference>
        <Images>
             <TempImageURL>https://x.ctrl.com/Image.ashx?Id=e1f47a89-c289-43e1-a2c2-0d35196a97ee&amp;userId=7414</TempImageURL>
        </Images>
    </Property>
</lists>

我的php

$xml_source='simple_prop2.xml';


$xml=simplexml_load_file($xml_source);

foreach ($xml->Property as $prop){
    echo $prop->Reference.' '.$prop->Images->TempImageURL.'<br>';
}
4

2 回答 2

1
$xml_source='simple_prop2.xml';
$xml=simplexml_load_file($xml_source);

foreach($xml->Property as $prop){
    echo $prop->Reference.'<br>';
    foreach($xml->Property->Images as $chk)
   {
    echo $chk->TempImageURL.'<br>';
   }
}
于 2013-10-02T07:11:58.887 回答
0

您的代码中的错误“无法打开流”添加带有文件名的路径。

例如

$xml_source='http://localhost/test/simple_prop2.xml';
于 2013-10-01T12:30:40.997 回答