i have an array $captions and i want to check if there is at least one value inside or not. the array could looks like that:
Array
(
[0] => 84
[1] =>
[2] => 82
[3] =>
[4] =>
[5] =>
[6] =>
[7] =>
[8] =>
[9] =>
)
and my way to check if there is "more than 0", "more than 1"...
if (count($captions) > 0) { echo '<br>bigger than 0';}
if (count($captions) === 1) {echo '<br>is 1';};
if (count($captions) > 1) {echo '<br>gbigger than 1';};
if (count($captions) > 2) {echo '<br>bigger than 2';}
but: it gives me with this array above follwing result:
bigger than 0
bigger than 1
bigger than 2
"bigger than 2" should not be, because the array contains only two values? what am i getting wrong?