PHP - Type Handling
You want to check if a variable
$val is exactly the integer 0 in PHP. Which condition correctly does this?$val is exactly the integer 0 in PHP. Which condition correctly does this?=== checks type and value, so if ($val === 0) { ... } is correct.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions