# zb-api **Repository Path**: leulay/zb-api ## Basic Information - **Project Name**: zb-api - **Description**: init - **Primary Language**: PHP - **License**: Apache-2.0 - **Default Branch**: dependabot/composer/phpmailer/phpmailer-6.1.6 - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-20 - **Last Updated**: 2024-05-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 正步网络科技(上海)有限公司 ## error_reporting(E_ALL); ## ini_set('display_errors', '1'); ### 项目使用ThinkPHP5框架 框架版本是 ``` V5.0.24 ``` ### 项目部署 ##### 在Nginx低版本中,是不支持PATHINFO的,但是可以通过在Nginx.conf中配置转发规则实现: location / { // …..省略部分代码 if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; break; } } ###项目入口文件 `/public/index.php` ### 应用目录在 `/application/` ### 项目controller,model层 controller接口操作 model层数据库操作 view层暂未使用 ### 接口版本`v1` #### admin是管理后台模块 ep是企业端 epOffline是企业端 #### 工具类 util文件夹下 ``` _ooOoo_ o8888888o 88" . "88 (| -_- |) O\ = /O ____/`---'\____ .' \\| |// `. / \\||| : |||// \ / _||||| -:- |||||- \ | | \\\ - /// | | | \_| ''\---/'' | | \ .-\__ `-` ___/-. / ___`. .' /--.--\ `. . __ ."" '< `.___\_<|>_/___.' >'"". | | : `- \`.;`\ _ /`;.`/ - ` : | | \ \ `-. \_ __\ /__ _/ .-` / / ======`-.____`-.___\_____/___.-`____.-'====== `=---=' ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 佛祖保佑 永无BUG ```