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

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

WBOY
Release: 2016-06-13 12:44:10
Original
932 people have browsed it

请高手帮忙看一下,如何取出返回的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;

?>

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template