我对 PHP 和 XML 很陌生,希望你能帮助我。搜索论坛并没有帮助我找到特定问题的答案。
我有一个带有 simplexml 数组的 PHP 页面,如下所示,只是更长:
SimpleXMLElement Object
(
[textID] => Array
(
[0] => SimpleXMLElement Object
(
[textID] => 1
[content] => Text1
)
[1] => SimpleXMLElement Object
(
[textID] => 2
[content] => Text2
)
[2] => SimpleXMLElement Object
(
[textID] => 3
[content] => Text3
)
)
)
现在我试图通过引用它的 ID(它是一个整数)从这个数组中回显一个特定的值。我得到这个工作的唯一方法是以下,但这只是按照数组中的顺序,而不是实际的 ID:
<?php echo $objTexts->textID[1]->content; ?>
有人可以告诉我我在这里缺少什么吗?
谢谢,蒂姆