PHP has the habit of evaluating (int)0 and (string)"0" as empty when using the empty() function. This can have unintended results if you expect numerical or string values of 0. How can I "fix" it to only return true to empty objects, arrays, strings, etc?
|
feedback
|
|
I use it like this
| |||
|
feedback
|
|
I seldom use PHP has a function
You can also use the exactly equals operator
This is true if | |||
|
feedback
|
|
"Fixing" is one point of view. Another would be to assume it's not "broken", and learn to work with it the way it was intentionally designed. Given the problem as you describe it, the best thing would be to tighten up your code so the variable can't be put into an indeterminate type state. Otherwise, you'll want to test for datatype using gettype(). | |||||||||
feedback
|
|
Generally speaking you want to use the triple equals operator to determine when a value truly is null or false. This is more specific and the results ALWAYS return exactly as expected. Creating a separate function to do something that you can do in a single line of code but using a different operator seems to be overly complicated and adds additional obfuscation. Additionally, many programmers tend to use 0 or an empty string to denote a non-existent value but it is more correct (and I feel a better practice) to use a null value to denote any value (regardless of type) that is truly non-existent. | |||||||
feedback
|
|
"0" is always considered false (or empty) in PHP, and it does make alot of sense (not that I'll argue that here). If you want to have zero evaluate to true as well, use | |||
feedback
|
|
here there are a good docs about how to read the NULL value. take a look | |||
|
feedback
|
|
I always add to my codebase
and use it instead of empty(). It solves the issue of keeping zeros (int, float or string) as non-empty. See http://www.php.net/manual/en/function.empty.php#103756 which was added May 2011. | ||||
|
feedback
|
|
I created an
| |||||||
feedback
|
|
The most effective solution for this problem is to test if the variable is false e.g.
It doesn't matter if the variable is empty or null, it all equals to false when put in a if conditional. | |||||||
feedback
|
|
You're trying to use Instead, make your checks more explicit. Rather than checking if the value is not useful, check that it is. For example, if you want an array, check it's an array ( Also, you can rely on the fact that all | |||
|
feedback
|