Home  >  Article  >  Backend Development  >  请高手帮忙看一下,怎么取出返回的XML的值

请高手帮忙看一下,怎么取出返回的XML的值

WBOY
WBOYOriginal
2016-06-13 12:44:10893browse

请高手帮忙看一下,如何取出返回的XML的值
header("Content-Type:text/html;   charset=utf-8");
error_reporting(E_ALL ^ E_NOTICE);

ob_start();
require_once('lib/nusoap.php');

$url ="http://wingcyx.gicp.net:1600/WeChatSrv.asmx?wsdl";
$client = new nusoap_client($url, 'wsdl','','','','');
$client->soap_defencoding='utf-8';
$client->decode_utf8=false;
$client->xml_encoding='utf-8';
//参数转换为数组传递
$ary = array('WeChat' => 'wingcyx', 'mobile' => '13670500598');
$result = $client->call('regmember',$ary);
$result =get_object_vars($result);

echo $result->regmemberResult;

?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn