Hi
In PHP, will these always return the same values?
//example 1
$array = array();
if ($array) {
echo 'the array has items';
}
// example 2
$array = array();
if (count($array)) {
echo 'the array has items';
}
Thank you!
|
|
|
|
|
|
|
From http://www.php.net/manual/en/language.types.boolean.php, it says that an empty array is considered FALSE. (Quoted): When converting to boolean, the following values are considered FALSE:
Since
then both cases illustrated in the question will always work as expected. |
||
|
|
|
Those will always return the same value, but I find
to be a lot more readable. |
||
|
|
|
|
Note that the second example (using |
||
|
|
|
Indeed they will. Converting an array to a bool will give you true if it is non-empty, and the count of an array is true with more than one element. See also: http://ca2.php.net/manual/en/language.types.boolean.php#language.types.boolean.casting |
||
|
|