我试图弄清楚我应该如何解决这个问题。当我有一个 MySQLi 查询失败时,它会自动终止脚本的其余部分。例如
//Pure example code
$data = $mysqli->prepare("somequery");
$data->execute(); // Execute the prepared query.
//If the query above fails, the rest of the script doesn't get executed.
基本上,我试图弄清楚当查询失败时如何阻止 PHP 终止脚本。有任何想法吗?由于假定的性能和安全性收益,我转向准备好的声明。重写所有内容以计划旧查询会很痛苦。
谢谢,