盛夏的果实 发表于 2021-8-21 15:12:54

THINKPHP3.2使用soap连接webservice的解决方法

今天使用thinkphp3.2 框架中开发时使用soap连接webservice 一些浅见现在分享一下,
1.首先我们要在php.ini 中开启一下
php_openssl.dll
php_soap.dll

2.在方法中创建的 soapclient 类 的实例


$url="https://www.test.com/adwebservice.asmx?wsdl";
$client = new \soapclient($url);
3.然后调用webservice 接口方法


//获取webservice 接口方法

$client->__getfunctions ();

//获取webservice接口方法的参数类型
$client->__gettypes ();

//执行调用方法

$aryresult = $client->changepassword($methodparam);
var_dump($aryresult);//打印结果
4.完整代码如下


class websevicesoap
{
public function webservice($url,$methodparam=array()){
try{
    header("content-type:text/html;charset=utf-8");
   $client = new \soapclient($url);
   //$client->__getfunctions ();
   //$client->__gettypes ();
   // 参数转为数组形式传
   // 调用远程函数
   $aryresult = $client->changepassword($methodparam);
   return (array)$aryresult;
}catch(exception $e){
   $aryresult="";
}
return $aryresult;
}
}
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持CodeAE代码之家。
原文链接:http://www.cnblogs.com/kingchou/p/thinkphp_webservice.html

文档来源:http://www.zzvips.com/article/177914.html
页: [1]
查看完整版本: THINKPHP3.2使用soap连接webservice的解决方法