$query = 'select column from table ...';
...
$row = mysql_fetch_assoc($result);
//now i have the result
//but how to check if it's null or 0?
答案 0 :(得分:3)
Pandiya 的意思是is_null。
答案 1 :(得分:1)
试
$res=mysql_query(" SELECT NULL AS anullcol, 0 AS anum, '' AS emptystring ");
var_dump(mysql_fetch_assoc($resource));
并阅读'==='和'!=='运算符。
下进行。
答案 2 :(得分:0)
if($var == '' || $var == NULL){
//Code
}
答案 3 :(得分:0)
您可以使用isset():
$foo = 0;
echo isset($foo) ? 'yes' : 'no';
echo "<br>";
$foo = null;
echo isset($foo) ? 'yes' : 'no';
将导致
yes
no
答案 4 :(得分:0)
也许您在询问Query是否返回了任何内容。所以尝试使用:
mysql_num_rows()
来自PHP的:
从结果集中检索行数。此命令仅对返回实际结果集的SELECT或SHOW等语句有效。要检索受INSERT,UPDATE,REPLACE或DELETE查询影响的行数,请使用mysql_affected_rows()。
<?php
if ( mysql_num_rows ( $query ) == 0){
echo "duh, nothing!";
}
?>
答案 5 :(得分:-1)
可能会使用select:
中的标识符替换nullselect coalesce(column, -1) as column
from table ...
这样你可以测试0或-1(NULL)。