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.
我已经编写了很多代码,但现在我开始质疑 - 语句有多重要,例如:
or die(mysql_error());
在我所有的查询中?
我现在几乎没有...
我实际上建议不要在生产中使用这个错误,因为它会在那里停止页面的执行。您希望为您的用户提供更优雅的退出。
因此,在这种特定情况下,您可以这样做
or handle_error();
您将在哪里handle_error()实现为您的用户优雅退出的方法。
handle_error()