As the title says what does === mean when you use it in php?
Theres = for assigning things and theres == for equal to, the best description i have so far is...
PHP Code:
if(somebooleanfunction($var) === TRUE){
//Statements
}
That would work where as:
PHP Code:
if(somebooleanfunction($var) == TRUE){
//Statements
}
Would not work, is that right?
Can anyone say where else === can be used and why it should be?
Thanks for any help.