โพรโทคอล aimcomment ค่าของ php stackoverflow

รหัสตัวอย่าง

0
0

โพรโทคอล aimcomment ค่าของ php stackoverflow

/*  == operator in PHP doesn't check for type.  
 ==, as you did, PHP treats NULL, false, 0, the 
 empty string, and empty arrays as equal.
*/

if($variable === NULL) {...}

/* check == vs ===  */

'' == NULL would return true
0 == NULL would return true
false == null would return true

where as

'' === NULL would return false
0 === NULL would return false
false === NULL would return false

หน้าคล้ายกัน

คล้ายกันหน้ากับตัวอย่าง

ในภาษาอื่นๆ

หน้านี้อยู่ในภาษาอื่นๆ

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................