YurunPHP内置Soap支持,可以搭配PHP的SoapServer类使用。
由于文字可能表述不清,大多数内容将以代码形式展现。
#### 配置文件
添加自动加载
~~~
'AUTOLOAD_RULES' => array(
array('type'=>'Word','word'=>'SoapControl','path'=>'Ex/Lib/Soap'),
array('type'=>'Word','word'=>'SoapParser','path'=>'Ex/Lib/Soap'),
array('type'=>'Word','word'=>'SoapProxy','path'=>'Ex/Lib/Soap'),
array('type'=>'Word','word'=>'ClassToWsdl','path'=>'Ex/Lib/Soap/PHPWsdl'),
array('type'=>'Word','word'=>'WSDL','path'=>'Ex/Lib/Soap/PHPWsdl'),
),
~~~
#### 控制器
~~~
<?php
class ServiceControl extends SoapControl
{
/**
* 服务首页动作名
*/
protected $index = 'index';
/**
* wsdl文档动作名
*/
protected $wsdl = 'wsdl';
/**
* 服务接口执行动作名
*/
protected $exec = 'exec';
/**
* 服务接口测试页面动作名
*/
protected $test = 'test';
/**
* wsdl中的Style
*/
protected $wsdlStyle = 'document';
/**
* wsdl中的use
*/
protected $wsdlUse = 'literal';
/**
* 是否启用缓存
*/
protected $cacheStatus = true;
/**
* 友好展示页面
* @param mixed $serviceName
* @return mixed
*/
public function index($serviceName)
{
$this->__index($serviceName);
}
/**
* wsdl文件
* @param mixed $serviceName
* @return mixed
*/
public function wsdl($serviceName)
{
$this->__wsdl($serviceName);
}
/**
* webservice调用入口
* @param mixed $serviceName
* @return mixed
*/
public function exec($serviceName)
{
$this->__exec($serviceName);
}
/**
* 测试入口
* @param mixed $serviceName
* @param mixed $methodName
* @return mixed
*/
public function test($serviceName,$methodName)
{
$this->__test($serviceName,$methodName);
}
}
~~~
#### 路由
路由这一步其实无关紧要,使用默认的规则访问也可以,如果想要Url美观,可以参考我给的示例自行修改。
~~~
'rules' => array(
'Service/[serviceName:word]/[methodName:word]/test' => 'Test/Service/test',
'Service/[serviceName:word]/[action:word]' => 'Test/Service/$2',
'Service/[serviceName:word]' => 'Test/Service/index',
)
~~~
这样配置,路径就是这样的
> index:http://xxx.com/Service/服务名
> wsdl:http://xxx.com/Service/服务名/wsdl
> exec:http://xxx.com/Service/服务名/exec
> test:http://xxx.com/Service/服务名/方法名/test
#### 服务文件
一般放在对应模块的Lib目录下
`Test.class.php`
~~~
<?php
/**
* 测试接口
* @namespace http://www.baidu.com/
*/
class Test
{
/**
* 加法1
* @soap
* @param int $a1 数字1
* @param int $b1 数字2
* @return int
*/
public function add($a1,$b1)
{
return $a1 + $b1;
}
/**
* 减法
* @soap
* @param int $a 数字1
* @param int $b 数字2
* @return int[]
*/
public function sub($a,$b)
{
return array($a,$b);
}
public function test1()
{
}
private function test2()
{
}
}
~~~
> namespace可以自行修改
> 开放出来的soap方法只有add和sub,也就是依靠注释来识别哪个是soap方法。
> 参数和返回值一定要详细注释,否则生成的wsdl不对,调用不出来。
- 序言
- 有些话想说
- 基础入门
- 简介
- 下载安装YurunPHP
- 运行环境
- 开发规范
- 目录结构
- 模块
- 控制器
- 自动加载
- 手动加载
- 项目配置
- 入口文件
- 项目目录结构
- 配置文件
- 驱动配置
- 数据库配置
- 项目初始化处理
- 框架编译
- 项目部署
- 控制器
- 创建控制器
- 加载模版显示页面
- AJAX返回数据
- 模型
- 创建模型
- 实例化模型
- 数据管理
- 连贯操作
- distinct
- field
- from
- where
- wherePk
- group
- having
- order
- limit
- join
- page
- headTotal/footTotal
- 连贯操作收尾方法
- select
- selectPage
- buildSQL
- selectValue
- selectBy
- getBy
- getByPk
- random
- inc
- dec
- add
- edit
- delete
- 合计函数
- save
- 执行SQL语句
- 创建数据并验证
- 字段映射
- 增删改查前置和后置
- Response类
- GET/POST/COOKIE/REQUEST
- Cookie
- Session
- 如何自定义Session存储
- 数据库操作
- 常用操作
- 查询记录
- 存储过程
- 数据库函数
- MSSQL
- 视图
- 调用视图
- 给视图传值
- 模版引擎
- 输出
- 使用PHP代码
- 模版标签
- if
- switch
- for
- counter
- foreach
- include
- js/css/image
- url
- origin
- 模版常量替换
- 后台视图控件
- 通用属性用法
- 数据集绑定
- 下拉框(select)
- 单选框(radio)
- 单选框组(radiogroup)
- 选择框(checkbox)
- 选择框组(checkboxgroup)
- 表格(table)
- 文本框(textbox)
- 分页条(pagebar)
- 数据验证
- 验证方法
- between
- betweenEqual
- empty_str
- not_empty_str
- regex
- length
- lengthChar
- mobile
- tel
- phone
- postcode
- url
- ip
- lt/gt/ltEqual/gtEqual
- equal/unequal
- in/notin
- idcard
- 路由
- 路由配置
- 自定义分层
- 缓存
- 缓存配置
- 使用缓存
- 配置
- 配置驱动配置
- 使用配置
- 过滤域名
- 日志
- 日志驱动配置
- 文件日志
- 事件
- 事件列表
- 插件
- 多语言支持
- 定时任务
- API接口开发
- CLI命令行模式
- Soap WebService