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.
設定していた
mysqli_report(MYSQLI_REPORT_STRICT)
と
try{ //query sth ,error will happend }catch(Exception $e){ print($e->__toString()); }
しかし、デバッグ情報はありません。しかし、設定mysqli_report(MYSQLI_REPORT_ALL)すると、デバッグ情報を取得できます。なぜ?
mysqli_report(MYSQLI_REPORT_ALL)
使ってみて
$driver = new mysqli_driver(); $driver->report_mode = MYSQLI_REPORT_STRICT;