Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每次当我尝试获得比 1+1 更难的命令结果时,laravel 中的 Tinker 都会自行关闭。
Laravel:5.5.38
php: 7.2.19
在此处输入图像描述
你必须像这样使用
$user = \App\User::find(1);
或者
$user = App\User::find(1);
如果有人会得到相同的例外,请更好地检查您与 env 文件中数据库的连接,因为我花了 3 个小时来解决我自己的错误。