无法使用 PHP 读取某一特定 XML 节点
我正在使用 PHP 解析 XML 文件,并且能够成功地从文件中提取数据(一个特定节点除外)。有一个标有“ImageData”的开放式标签,后跟一个文本块。文本块没有被拾取,我不明白为什么它忽略“ImageData”标签后面的文本。
这是相关的 XML 代码:
<Part>
<Figure>
<ImageData src="images/interbank_img_0.jpg"/>
The text I want is here
</Figure>
这是 PHP 脚本:
$xml = simplexml_load_file("rates/interbank.xml");
$test = $xml->Part[0]->Figure[0];
这是输出 $test 时的结果:
object(SimpleXMLElement)#3 (1) {
["ImageData"]=>
object(SimpleXMLElement)#2 (1) {
["@attributes"]=>
array(1) {
["src"]=>
string(26) "images/interbank_img_0.jpg"
}
}
}
I'm using PHP to parse an XML file, and am successfully able to pull data from the file, with the exception of one particular node. There is an open ended tag labeled "ImageData" followed by a block of text. The block of text is not getting picked up, and I can't figure out why its ignoring the text that follows the "ImageData" tag.
Here's the relevant XML code:
<Part>
<Figure>
<ImageData src="images/interbank_img_0.jpg"/>
The text I want is here
</Figure>
This is the PHP script:
$xml = simplexml_load_file("rates/interbank.xml");
$test = $xml->Part[0]->Figure[0];
Here's the result when outputting $test:
object(SimpleXMLElement)#3 (1) {
["ImageData"]=>
object(SimpleXMLElement)#2 (1) {
["@attributes"]=>
array(1) {
["src"]=>
string(26) "images/interbank_img_0.jpg"
}
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将节点转换为字符串
打印即可
Just convert the node to string
prints