终极解决方案
Script @php think service:discover handling the post-autoload-dump event returned with error code 255
具体方法
tink文件添加一个debug即可看到详细错误
#!/usr/bin/env php<?phpnamespace think;// 命令行入口文件// 加载基础文件require __DIR__ . '/vendor/autoload.php';// 应用初始化(new App())->debug(true)->console->run();
修复问题
加上debug可以看到具体的错误,按图索骥即可。
来源地址:https://blog.csdn.net/Function_JX_/article/details/128341623