欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

请问PHP里XPath查找出数据后如何让它不返回数据结构只返回值?

程序员文章站 2022-05-12 11:56:39
...
		$data=$xml->xpath("//book/@msg");

上面一段code会输出如下内容
array(1) { [0]=> object(SimpleXMLElement)#9 (1) { ["@attributes"]=> array(1) { ["msg"]=> string(24) "小王子" } } }
请问如何让它只返回msg里边的内容,而不返回数据路径"@attributes


回复讨论(解决方案)


$data=$xml->xpath("//book/@msg");$str = (string)$data[0];