Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是在 PHP 中检查值是否等于 NULL 的正确语法:
if($AppointmentNo==NULL)
? 我已经尝试过了,但似乎它不起作用。对另一种语法有什么建议吗?
谢谢
使用is_null():
is_null()
if(is_null($AppointmentNo)) { // do stuff }
或者,您也可以使用严格比较( ===):
===
if($AppointmentNo === NULL) {
一个例子:
$foo = NULL; if(is_null($foo)) { echo 'NULL'; } else { echo 'NOT NULL'; }
输出:
NULL
有一个名为is_null的函数。
is_null($AppointmentNo)
使用is_null().
if (is_null($AppointmentNo))
通常你会使用is_null().
if (is_null($AppountmentNo))