今天使用thinkphp3.2 框架中开发时使用soap连接webservice 一些浅见现在分享一下,
1.首先我们要在php.ini 中开启一下
php_openssl.dll
php_soap.dll
2.在方法中创建的 soapclient 类 的实例
1
2
|
$url = "https://www.test.com/adwebservice.asmx?wsdl" ;
$client = new \soapclient( $url );
|
3.然后调用webservice 接口方法
1
2
3
4
5
6
7
8
9
10
11
|
//获取webservice 接口方法
$client ->__getfunctions ();
//获取webservice接口方法的参数类型
$client ->__gettypes ();
//执行调用方法
$aryresult = $client ->changepassword( $methodparam );
var_dump( $aryresult ); //打印结果
|
4.完整代码如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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 ;
}
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://www.cnblogs.com/kingchou/p/thinkphp_webservice.html