评论

收藏

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

开发技术 开发技术 发布于:2021-08-21 15:12 | 阅读数:599 | 评论:0

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

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

关注下面的标签,发现更多相似文章