我正在使用用户断言功能,例如:
debug_assert (
gettype($ob)=='object',
"Not an object <pre>"
.print_r($ob,1).'</pre>'
) or exit;
但是我发现在$ mysqli上调用print_r会改变$ mysqli-> affected_rows的结果:它将受影响的行从先前的'n'重置为-1。
测试代码:
$q= "INSERT INTO t_envois SET id_contact=243";
if (!$mysqli) die ("missing mysqli");
$ok = $mysqli->query($q);
if (!$ok) die ("bad query $q : ".$mysqli->errno.") ".$mysqli->error);
function get_affected_rows() {
global $mysqli;
return $mysqli->affected_rows;
}
echo "1) ".($mysqli->affected_rows)."<br>"; // 1
echo "2) ".($mysqli->affected_rows)."<br>"; // 1
echo "3) ".get_affected_rows()."<br>"; // 1 try other function
echo "4) ".get_affected_rows()."<br>"; // 1 (no issue)
echo "5) ".(print_r($mysqli,1))."<br>"; // affected_rows shown as 1
echo "6) ".($mysqli->affected_rows)."<br>"; // -1 CHANGED !!
echo "7) ".get_affected_rows()."<br>"; // -1 etc
调用print_r时结果如何从1变为-1?是否还有其他更改$ mysqli字段的非SQL函数?有办法避免这种情况吗?
答案 0 :(得分:1)
正如@Progman所说,这与一个长期存在的php错误有关:http://bugs.php.net/bug.php?id=67348
stat,print_r,var_dump以及可能调用“ stat”的其他函数会将受影响的行重置为-1。
就我而言,解决方法是重写固定的类似于print_r的函数:
function print_it($thing) {
if ((gettype ($thing) == 'object')
and (get_class($thing) == 'mysqli'))
echo "...\naffected_rows => ".$thing->affected_rows."...";
else
print_r($thing);
}