PHP - Type Handling
Which operator in PHP checks both value and type equality between two variables?
== compares values after type juggling, while === compares both value and type.=== is used for strict comparison, ensuring both operands have the same type and value.=== [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions