编程语言
首页 > 编程语言> > thinkphp5.0 定义api版本号

thinkphp5.0 定义api版本号

作者:互联网

定义API版本号能更好适应业务变化

例子:

访问
http://localhost:8000/public/index.php/api/v1/banner/1
使用
application\api\controller\v1\Banner.php

访问
http://localhost:8000/public/index.php/api/v2/banner/1
使用
application\api\controller\v2\Banner.php

路由配置

application\route.php

Route::get('api/:version/banner/:id', 'api/:version.Banner/getBanner');

此时可以通过更改url调用接口的不同版本

标签:版本号,Banner,application,api,thinkphp5.0,php,banner
来源: https://www.cnblogs.com/Qyhg/p/14756735.html