XML文件:
<?xml version="1.0" encoding="UTF-8"?>
<gallery>
<image big="image1.jpg"
thumb="image1t.jpg"/>
<image big="image2"
thumb="image2.jpg"/>
<image big="image3t.jpg"
thumb="image3t.jpg"/>
为此,我要使用big
值访问链接;
<?php
$xmls = "test.xml";
$xml = simplexml_load_string($xmls);
foreach ($xml->image[0]->attributes() as $a => $b) {
echo $b;
}
?>
结果:白屏。
这可能是什么原因?