php-rpc-doc/test/index.php

23 lines
781 B
PHP
Raw Permalink Normal View History

2018-06-06 05:41:31 +00:00
<?php
/**
* ==================================================================
* : index.php
* : API文档 By Api-Doc-PHP
* : IT小强
* 创建时间: 2018/6/5 9:48
* 修改时间:
* copyright (c) 2016 - 2018 mail@xqitw.cn
* ==================================================================
*/
require_once __DIR__ . '/../vendor/autoload.php';
require_once __DIR__ . '/Api.php'; // 加载测试API类1
require_once __DIR__ . '/Api2.php'; // 加载测试API类2
$config = [
2018-06-07 05:56:02 +00:00
'class' => ['Api', 'Api2'], // 要生成文档的类
2018-06-06 05:41:31 +00:00
'filter_method' => ['__construct'], // 要过滤的方法名称
];
2018-06-07 05:47:07 +00:00
$api = new \itxq\apidoc\BootstrapApiDoc($config);
$doc = $api->getHtml();
exit($doc);
2018-06-06 05:41:31 +00:00