Internee PHP Developer Question:

Tell me what is the differences between $a != $b and $a !== $b?

Internee PHP Developer Interview Question
Internee PHP Developer Interview Question

Answer:

!= means inequality (TRUE if $a is not equal to $b) and !== means non-identity (TRUE if $a is not identical to $b).


Previous QuestionNext Question
Explain me what is the difference between for and foreach?Tell me what does $_SERVER means?