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 代码返回的实际错误消息。目前,当我遇到错误时,我的浏览器给了我消息“服务器错误”。
谢谢汤姆。
问题是您可能在 php.ini 中禁用了所有内容。您可以在运行时使用以下语句修改这些值:
ini_set("error_reporting", E_ALL); ini_set("display_errors", "On"); ini_set("display_startup_errors", "On");