今天发现,null NULL is_null并不是可以相等的。
function a()
{
   return NULL;
}
 
function b()
{
   return null;
}
结果是:
 
is_null(a())    is_null(b()) 都为假