api_response_header.php 337 B

123456789101112
  1. <?php
  2. $config = include('platform_request_body.php');
  3. unset($config['struct']['platform_id']);
  4. //$config['struct']['value']['name'] = '转换参数名';
  5. $config['struct'] += [
  6. 'api_id' => [
  7. 'name' => '接口id',
  8. 'type' => 'int(11)',
  9. ],
  10. ];
  11. $config['name'] = '接口响应头参数配置';
  12. return $config;