php调用webservice接口
Posted fjya
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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);//返回值
以上是关于php调用webservice接口的主要内容,如果未能解决你的问题,请参考以下文章