欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2023-02-19 19:27:54
今天使用thinkphp3.2 框架中开发时使用soap连接webservice 一些浅见现在分享一下, 1.首先我们要在php.ini 中开启一下  php...

今天使用thinkphp3.2 框架中开发时使用soap连接webservice 一些浅见现在分享一下,

1.首先我们要在php.ini 中开启一下

 php_openssl.dll

 php_soap.dll

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

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;
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。