1234567891011121314 |
- <?php
- $config = include('platform_request_body.php');
- unset($config['struct']['platform_id']);
- //$config['struct']['value']['name'] = '转换参数名';
- $config['struct'] += array
- (
- 'api_id' => array
- (
- 'name' => '接口id',
- 'type' => 'int(11)',
- ),
- );
- $config['name'] = '接口响应头参数配置';
- return $config;
|