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.
当我尝试使用 laravel tinker 时,我在 kubernetes 集群上部署了一个 laravel 应用程序,我在为每个命令按回车键后出现以下错误
ErrorException with message 'Undefined variable: status'
在我的本地机器上根本没有这样的问题
我一直在调试这个。我如何获得错误跟踪以找出发生这种情况的位置
Laravel 5.6 Psy Shell v0.9.12 (PHP 7.1.33 — cli)
在研究 psysh 源代码几个小时后,我发现了问题所在。
我在我的 php.ini 文件中禁用了一些pcntl_xxx功能,将它们删除,现在一切正常。
pcntl_xxx
顺便说一句,对于任何对发生此错误的确切路径感兴趣的人:
在vendor/psy/psysh/src/ExecutionLoop/ProcessForker.php文件中查找名为的私有函数createSavegame()
vendor/psy/psysh/src/ExecutionLoop/ProcessForker.php
createSavegame()