1 Answers
Difference between == and === operators in PHP
In PHP, the == operator is used for comparison between two values but it does not check for data types. On the other hand, the === operator is also used for comparison but it checks for data types as well, ensuring that the values are of the same type before evaluating them.
Please login or Register to submit your answer