例如:
$sql = 'select a, b, c from table where condition';
$stmt->prepare($sql);
$stmt->execute();
$data = $stmt->fetch();
AND
$sql = 'select a, b, c from table where condition';
$stmt->prepare($sql);
$stmt->execute();
$data = $stmt->fetchAll();
如何检查结果集是否为空
答案 0 :(得分:1)
检查$data
变量,如:
if ($data) {
//not empty
} else {
// empty
}
如果select
查询的结果不包含任何数据变量$data
将包含null
值。