object(SimpleXMLElement)#9 (1) {&nbs"/>  object(SimpleXMLElement)#9 (1) {&nbs">

Heim >Backend-Entwicklung >PHP-Tutorial >请教PHP里XPath查找出数据后怎么让它不返回数据结构只返回值

请教PHP里XPath查找出数据后怎么让它不返回数据结构只返回值

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-13 12:11:391208Durchsuche

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

		$data=$xml->xpath("[email protected]");

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

$data=$xml->xpath("[email&#160;protected]");<br /><br />$str = (string)$data[0];

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn