Laravel中我们可以登录到服务器通过 Tinker 手动创建后台用户 laravel中tinker命令的作用是用来调试laravel,可以打印变量或对象信息,显示函数代码,对数据库写入和查询数据。 输入help可以查看帮助信息。 tinker命令的启动方式为php artisan tinker,运行后出现的提示符为tinker的提示符 ,用于通过命令行与应用进行交互。 下面我们开始创建后台用户: php artisan tinker 这里有一个报错: ErrorException : exec() has been disabled for security reasons 解决:打开php.ini文件,搜索 disable_functions,找到如下类似内容: disable_functions=passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_get_status,proc_open,popen,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server 找到exec并删除然后重启php服务。再次输入 php artisan tinker $user = new App