TP5.1 和 TP5的版本 目录结构不太一样
TP5.1的路由文件是独立的一个文件夹
在使用的时候写入以下代码:
use think\Route; Route::get('/',function (){ return 'hello world'; });
会报以下错误:
ErrorException in route.php line 15 Non-static method think\Route::get() should not be called statically
解决办法是注释掉 use think\Route; 即可.
虽然不知道为什么会这样…但确实注释掉就可以了, 比较鸡肋…
记录一哈.
-End-