Does it have to die
Quite contrary, it shouldn't or die()
ever.
PHP is a language of bad heredity. Very bad heredity. And or die()
with an error message being one of the worst rudiments:
- die throws an error message out, revealing some system internals to a potential attacker
- it is confusing innocent users with strange messages and leaving them no interface to work with, so they'd likely just drop out.
- it kills the script in the middle, so it may cause torn design (or no design at all) shown (i.e. an incomplete render of the page the user requested)
- killing the script irrecoverably. While thrown exception can be caught and gracefully handled
die()
gives you no hint of the place where the error occurred. And in a relatively big application it will be quite a pain to find.
So, never use die()
with MySQL errors, even for the temporary debugging: there are better ways.
Instead of manually checking for the error, just configure mysqli to throw exceptions on error, by adding the following line to your connection code
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
and after that just write every mysqli command as is, without any or die
or anything else:
$result = mysqli_query($link, $sql);
This code will throw an exception in case of error and thus you will always be informed of every problem without a single line of extra code.
A more detailed explanation on how to make your error reporting production ready, uniform and overall sensible while making your code much cleaner, you can find in my article on PHP error reporting.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…