当前位置:Gxlcms > PHP教程 > 解析xml内容-Reply节点的属性2

解析xml内容-Reply节点的属性2

时间:2021-07-01 10:21:17 帮助过:18人阅读

xml文档内容:



	
	
	
		0
		All action successfully.
	

解析xml内容的php代码实现:



	
	
	
		0
		All action successfully.
	
';
//解析xml内容
$xml = simplexml_load_string($xmlstr);
$ReplyArr = (array)$xml->Reply;		
$CmdResult = $ReplyArr['Result'];
$ErrorDescription = (string) $ReplyArr['Description'];
var_dump($CmdResult);
var_dump($ErrorDescription);

以上就介绍了 解析xml内容-Reply节点的属性2,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行