For example given code:
if(strstr($key, ".")){
// do something
}
strstr returns a string, how can it be used as boolean? How does it turn true or false?
|
Citing from the PHP docu:
So the boolean check is basically, whether the substring (the Any other value this function can return is a non-empty string, which will be evaluated to truthy (See this entry in docu.) |
|||||||||||
|
|
here is an example
definition: The
|
|||||||
|
|
The return of strstr is either boolean (false) or string, then
Note: is_bool($strtsr) also can be used because the string will not be casted to bool (true)
|
|||
|
|
|
This is simple: in an if statement , when we have a value that is empty for example a non empty string , this is true. For example:
On the other hand when you have an empty variable then in if statement it acts like false. For example:
So in your case you have:
|
||||
|
|
Returns the portion of string, or FALSE if needle is not found.So, if the result is not FALSE, it means it's TRUE (as in truish, though, not as in boolean.) Basically is a check for a NON-FALSE value – Damien Pirsy Feb 3 at 20:35