当前位置:Gxlcms > PHP教程 > 请问PHPsimplexml_load_string读取XML并比较数值的有关问题

请问PHPsimplexml_load_string读取XML并比较数值的有关问题

时间:2021-07-01 10:21:17 帮助过:21人阅读

请教PHP simplexml_load_string读取XML并比较数值的问题.
本帖最后由 xp8878 于 2014-01-12 18:21:08 编辑

XML结构如下
父节点
子节点1xxx
子节点2xx
Parent下有两个节点,PHP用变量$p指向Parent
为什么$p->Child1==$p->Child2结果是true?
怎么判断两个值是否相等?
谢谢!

分享到: 更多


------解决方案--------------------
$s =<<< XML

xxx
xx

XML;

$xml = simplexml_load_string($s);
var_dump($xml->Child1[0] == $xml->Child2[0]);
bool(false)

人气教程排行