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接口的主要内容,如果未能解决你的问题,请参考以下文章

php中创建和调用webservice接口示例

php调用sap和.net的webservices接口

php调用webservice接口

如何调用webservice接口 ajax

C#/PHP调用有SoapHeader的WebService

接口超时需要怎么处理