在PHP中访问数组中的项目

时间:2009-05-09 11:18:08

标签: php arrays dom

在PHP中,我想获取客户名称标签的文本值。我写这段代码,但这不起作用。你能帮我解决这个问题吗?谢谢

$customerName = $dom->get_elements_by_tagname("item");
$customernameValue = customerName[0]-> first_child()->node_value ();

2 个答案:

答案 0 :(得分:10)

我不熟悉您正在使用的库,但看起来您只是错过了第二行customerName之前的$。

答案 1 :(得分:3)

您错过了$标志,请尝试以下操作:

$customerName = $dom -> get_elements_by_tagname ("item");
$customernameValue = $customerName[0] -> first_child() -> node_value ();