> 開發流程及注意
* require php >= 7.4 mysql5.7 nginx|apache
* 語法采用嚴格模式,每個PHP文件上方加入 declare?(strict_types?=?1);
* 采用PHP7的寫法規范及新特性,如類、方法、函數的強類型約束,類屬性的類型約束,?? 代替 isset等...
* 采用多模塊,域名綁定應用開發模式,接口地址:http://api-service.eyingbao.com:88/index.php
* 拋棄傳統的pathinfo路由模式,所有的接口必須配置路由后才可訪問,遵循restful接口規范定義
* thinkPHP6.0官方使用手冊[鏈接]([序言 · ThinkPHP6.0完全開發手冊](http://www.hmoore.net/manual/thinkphp6_0/1037479))