多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
* use区别 [这个可参考官方文档 facade说明 ](https://www.kancloud.cn/manual/thinkphp5_1/353959) ## Request::post()问题 支持变量配置, 如,$this\->request\->post('status',1); 不支持5.0 版本直接 用数组配置方式 ## 变量 $dispatch \= Request::dispatch(); dump($dispatch); ~~~ object(think\route\dispatch\Module)#14 (6) { ["controller"] => string(5) "index" ["actionName"] => string(5) "index" ["dispatch"] => array(3) { [0] => string(7) "diquick" [1] => NULL [2] => NULL } ["param"] => array(0) { } ["code"] => NULL ["convert"] => NULL } ~~~