mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
86 lines
2.2 KiB
PHP
86 lines
2.2 KiB
PHP
<?php
|
||
|
||
// +----------------------------------------------------------------------
|
||
// | Think.Admin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://think.ctolog.com
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace service;
|
||
|
||
use think\Log;
|
||
|
||
/**
|
||
* Soap服务对象
|
||
* Class SoapService
|
||
* @package service
|
||
*/
|
||
class SoapService
|
||
{
|
||
|
||
/**
|
||
* SOAP实例对象
|
||
* @var \SoapClient
|
||
*/
|
||
protected $soap;
|
||
|
||
/**
|
||
* 错误消息
|
||
* @var string
|
||
*/
|
||
protected $error;
|
||
|
||
/**
|
||
* SoapService constructor.
|
||
* @param string|null $wsdl WSDL连接参数
|
||
* @param array $params Params连接参数
|
||
* @throws \Exception
|
||
*/
|
||
public function __construct($wsdl, $params)
|
||
{
|
||
set_time_limit(3600);
|
||
if (!extension_loaded('soap')) {
|
||
throw new \Exception('Not support soap.');
|
||
}
|
||
$this->soap = new \SoapClient($wsdl, $params);
|
||
}
|
||
|
||
/**
|
||
* 属性获取转换
|
||
* @param $name
|
||
* @return string
|
||
*/
|
||
public function __get($name)
|
||
{
|
||
switch (strtolower($name)) {
|
||
case 'errmsg':
|
||
return $this->getError();
|
||
case 'errcode':
|
||
return $this->getErrorCode();
|
||
}
|
||
return '';
|
||
}
|
||
|
||
/**
|
||
* @param string $name SOAP调用方法名
|
||
* @param array|string $arguments SOAP调用参数
|
||
* @return array|string|bool
|
||
* @throws \Exception
|
||
*/
|
||
public function __call($name, $arguments)
|
||
{
|
||
try {
|
||
return $this->soap->__call($name, $arguments);
|
||
} catch (\Exception $e) {
|
||
Log::error("Soap Error. Call {$name} Method --- " . $e->getMessage());
|
||
return false;
|
||
}
|
||
}
|
||
|
||
} |