php调用webservice接口

$client = new SoapClient ($this->webServiceUrl); 
$client->soap_defencoding = 'utf-8';
$client->xml_encoding = 'utf-8';
$param = array('arg0'=>$context);//参数拼接xml字符串
$result = $client->managementMemberInfo($param);//返回值

猜你喜欢

转载自www.cnblogs.com/fjya/p/10618728.html