简短的问题,但显然谷歌或 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)
谢谢!