README 文件修改
This commit is contained in:
parent
5781e68d6e
commit
a098afedd3
31
README.md
31
README.md
|
@ -1,10 +1,10 @@
|
||||||
# api-doc-php
|
# Api-Doc-PHP
|
||||||
|
|
||||||
### 开源地址:
|
### 开源地址:
|
||||||
|
|
||||||
[GigHub https://github.com/itxq/api-doc-php](https://github.com/itxq/api-doc-php)
|
[【GigHub:】https://github.com/itxq/api-doc-php](https://github.com/itxq/api-doc-php)
|
||||||
|
|
||||||
[码云 https://gitee.com/itxq/api-doc-php](https://github.com/itxq/api-doc-php)
|
[【码云:】https://gitee.com/itxq/api-doc-php](https://github.com/itxq/api-doc-php)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,31 +14,36 @@
|
||||||
|
|
||||||
### 扩展安装:
|
### 扩展安装:
|
||||||
|
|
||||||
+ composer命令 `composer require itxq/wechat-sdk-php`
|
+ 方法一:composer命令 `composer require itxq/wechat-sdk-php`
|
||||||
|
|
||||||
|
+ 方法二:直接下载压缩包,然后进入项目中执行 composer命令 `composer update` 来生成自动加载文件
|
||||||
|
|
||||||
### 引用扩展:
|
### 引用扩展:
|
||||||
|
|
||||||
+ 当你的项目不支持composer自动加载时,可以使用以下方式来引用该扩展包
|
+ 当你的项目不支持composer自动加载时,可以使用以下方式来引用该扩展包
|
||||||
|
|
||||||
`require_once __DIR__ . '/vendor/autoload.php'`
|
```
|
||||||
|
// 引入扩展(具体路径请根据你的目录结构自行修改)
|
||||||
|
require_once __DIR__ . '/vendor/autoload.php';
|
||||||
|
```
|
||||||
|
|
||||||
### 使用扩展:
|
### 使用扩展:
|
||||||
|
|
||||||
```
|
```
|
||||||
// 引入SDK
|
// 引入扩展(具体路径请根据你的目录结构自行修改)
|
||||||
require_once __DIR__ . '/vendor/autoload.php';
|
require_once __DIR__ . '/../vendor/autoload.php';
|
||||||
|
// 加载测试API类1
|
||||||
// 配置信息
|
require_once __DIR__ . '/Api.php';
|
||||||
|
// 加载测试API类2
|
||||||
|
require_once __DIR__ . '/Api2.php';
|
||||||
$config = [
|
$config = [
|
||||||
'class' => ['Api', 'Api2'], // 要生成文档的类
|
'class' => ['Api', 'Api2'], // 要生成文档的类
|
||||||
'filter_method' => ['__construct', 'add', 'edit'], // 要过滤的方法名称
|
'filter_method' => ['__construct'], // 要过滤的方法名称
|
||||||
];
|
];
|
||||||
|
|
||||||
// 调用
|
|
||||||
$api = new \itxq\apidoc\ApiDoc($config);
|
$api = new \itxq\apidoc\ApiDoc($config);
|
||||||
$doc = $api->getApiDoc();
|
$doc = $api->getApiDoc();
|
||||||
echo '<pre>';
|
echo '<pre>';
|
||||||
var_dump($doc);
|
var_dump($doc);
|
||||||
echo '</pre>';
|
echo '</pre>';
|
||||||
```
|
```
|
||||||
+ 具体使用可参见test目录
|
### 具体效果可运行test目录下的`index.php`查看
|
Loading…
Reference in New Issue
Block a user