我有这个:
[1]=>
object(SimpleXMLElement)#6 (1) {
["@attributes"]=>
array(14) {
["name"]=>
string(5) "MySQL"
["acknowledged"]=>
string(1) "1"
["comments"]=>
string(1) "1"
["current_check_attempt"]=>
string(1) "1"
["downtime"]=>
string(1) "0"
["last_check"]=>
string(19) "2010-05-01 17:57:00"
["markdown_filter"]=>
string(1) "0"
["max_check_attempts"]=>
string(1) "3"
["output"]=>
string(42) "CRITICAL - Socket timeout after 10 seconds"
["perfdata_available"]=>
string(1) "1"
["service_object_id"]=>
string(3) "580"
["state"]=>
string(8) "critical"
["state_duration"]=>
string(6) "759439"
["unhandled"]=>
string(1) "0"
}
}
(我用var_dump($ child)来生成)
如何将'name'属性作为字符串取出?
这是我的代码:
$xml = simplexml_load_string($results);
foreach($xml->data->list as $child) {
var_dump($child);
echo $child->getName() . ": " . $child->name . "<br />";
}
答案 0 :(得分:13)
虽然你能做到:
echo $child['name'];
要查看值,您应该注意$child['name']
是一个对象,而不是一个字符串。回应它会将其转换为字符串,因此它适用于那种情况。但是如果你把它存放在某个地方,最好把它自己投射到一个字符串上:
$name = (string) $child['name'];
答案 1 :(得分:12)
使用SimpleXML,您可以获得:
$element->subElement
$element['attribute']
所以,在这里,我要说你必须使用:
echo $child['name'];
作为参考,有关几个示例,请参阅simplexml手册的Basic usage部分。
示例#6 应该是有趣的,关于属性。
答案 2 :(得分:0)
有点乱,但我成功地使用了这个
foreach($xml->data->children() as $child) {
//var_dump($child);
foreach ($child->attributes() as $a => $b) {
echo $a . '=' . $b . '<br />';
}
}
不确定原因,但OpsView API返回一个二维数组,而不是每个XML节点只有一个值:(
echo $child['name'];
工作,更优雅,谢谢。
答案 3 :(得分:0)
我有类似的问题,我需要从我的SimpleXMLElement中获取字符串,我找不到名字来调用它。找到解决方案,使用(string)获取字符串文本:
foreach ($lines as $line) {
array_push($result, new line(**(string)**$line));
}
array
0 =>
object(line)[190]
private '_line' =>
object(SimpleXMLElement)[128]
public '@attributes' =>
array
...
string ' ' (length=1)
1 =>
object(line)[191]
private '_line' =>
object(SimpleXMLElement)[131]
public '@attributes' =>
array
...
string ' ' (length=1)
2 =>
object(line)[192]
private '_line' =>
object(SimpleXMLElement)[132]
public '@attributes' =>
array
...
string ' ~54**** I N V O I C E ****' (length=27)