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.
当我在 PHP 开发期间出现运行时错误而不是获取行号(如在 Java 中)时,我只会收到 HTTP 500 内部服务器错误。
为了了解错误发生在哪一行,我必须注释掉每一行代码,直到应用程序运行。这是 PHP 开发人员的正常做法还是我遗漏了什么。
我尝试了以下但没有成功:
error_reporting(E_ERROR | E_WARNING | E_PARSE);
我在 Mac OS 10.7 Apache Web 服务器上进行本地开发。
不知道为什么不赞成,但这是解决方案。谢谢ceejayoz。
ini_set('display_errors', true);