PHP code example of hulang / think-api-doc
1. Go to this page and download the library: Download hulang/think-api-doc library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
hulang / think-api-doc example snippets
composer
namespace app\api\controller;
/**
* @title API接口
*/
class Index
{
/**
* @title 首页信息
* @desc 方法描述
* @author 橘子味的心
* @version 1.0
* @method POST
* @param int id ID YES
* @param int limit 10 总条数 YES
* @param int page 1 当前页 YES
* @param int key 查询条件 NO
* @return int code 200/100 返回参数
* @return string msg ok 返回信息
* @return array data 返回数据
* @return array other 返回数据
*/
public function index()
{
}
/**
* @title 用户信息
* @desc 方法描述
* @author 橘子味的心
* @version 1.0
* @method POST
* @param int id ID YES
* @param int limit 10 总条数 YES
* @param int page 1 当前页 YES
* @param int key 查询条件 NO
* @return int code 200/100 返回参数
* @return string msg ok 返回信息
* @return array data 返回数据
* @return array other 返回数据
*/
public function user()
{
}
}