我不确定我的标题是否用词正确。希望我能以简洁的方式解释这一点。我正在尝试从数据库中选择所有内容:
if (! empty ( $fname ) && ! empty ( $lname )) {
$query5 = "select * from " . $db_prefix . "customer_det where (fname = '" . $fname . "' and lname = '" . $lname . "')";
$result5 = $mysqli->query ( $query5 ) or die ( mysql_error () );
} else {
$query5 = "select * from " . $db_prefix . "customer_det where phone = '" . $phone . "'";
$result5 = $mysqli->query ( $query5 ) or die ( mysql_error () );
}
然后我的下一条语句基本上说如果 $result5 === NULL 然后插入东西。问题是我是 var_dump($result5) ,它看起来像是在打印出一个数组。
object(mysqli_result)#4 (5) { ["current_field"]=> int(0) ["field_count"]=> int(34) ["lengths"]=> NULL ["num_rows"]=> int(0) ["type"]=> int(0) }
基本上我想说的是如何编写 IF $result5 = nonexistent 语句。我在这里寻找的是计数还是 num_rows 函数?