短い質問ですが、どうやらgoogleもphp.netもこれについて知らないので、可能かどうか興味がありました。
mysqli要素のクエリ文字列を取得できますか?適切なエラー関数を作成するために必要です
$mysqli = new mysqli(....);
$mysqli->query('INSERT INTO test(value) VALUES ('.rand(1,10000).');');
// here how do i find out the query of the $mysqli object WITHOUT having
// to save it before (i.e. using the actual $mysqli object)
ありがとう!