今天发现,null NULL is_null并不是可以相等的。 如 function a() { return NULL; } function b() { return null; } 结果是: is_null(a()) is_null(b()) 都为假 转载于:https://blog.51cto.com/oyoyo/72173