PHP 检查 NULL
代码如下:
$query = mysql_query("SELECT * FROM tablex");
if ($result = mysql_fetch_array($query)){
if ($result['column'] == NULL) { print "<input type='checkbox' />"; }
else { print "<input type='checkbox' checked />"; }
}
如果值是 NOT NULL
我仍然得到未选中的框.我从上面做错了什么,应该 $result['column'] == NULL
工作吗?
If the values are NOT NULL
i still get the uncheked box. Am i doing something wrong from above, shoudnt $result['column'] == NULL
work?
有什么想法吗?
推荐答案
使用 is_null 或 ===
运算符.
Use is_null or ===
operator.
is_null($result['column'])
$result['column'] === NULL
相关文章