面对查询类的语句,在【执行】了一个预编译查询后,使用mysqli_stmt_store_result($stmt)到底好不好,自己感觉不出来性能有多少提升,但是官方手册建议加那一个步骤。
2017-11-11
//mysqli_stmt_bind_result($stmt, $id,$title);
//mysqli_stmt_fetch($stmt);
//while (mysqli_stmt_fetch($stmt)) {
// echo $id . $title . '<br/>';
//}
$query_result = $stmt->get_result();
$arr = [];
while(mysqli_num_rows($query_result) && $row = mysqli_fetch_assoc($query_result)) {
$arr[] = $row;
}
//mysqli_stmt_fetch($stmt);
//while (mysqli_stmt_fetch($stmt)) {
// echo $id . $title . '<br/>';
//}
$query_result = $stmt->get_result();
$arr = [];
while(mysqli_num_rows($query_result) && $row = mysqli_fetch_assoc($query_result)) {
$arr[] = $row;
}
2017-11-10