0

我不确定我的标题是否用词正确。希望我能以简洁的方式解释这一点。我正在尝试从数据库中选择所有内容:

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 函数?

4

1 回答 1

1

mysqli_query()返回一个mysqli_result 对象

您想检查它的属性之一,而不是 for null,例如:

if ($result5->num_rows == 0)

注意:我还鼓励您阅读有关SQL 注入的内容。

于 2012-11-06T21:13:31.837 回答