Is there anyway to count how many keys an array has in Php?
Array
(
[0] => 'hello'
[1] => 'there'
[2] =>
[3] =>
[4] => 3
)
// how to 开发者_开发技巧get the number 5?
count
$arr = Array
(
0 => 'hello',
1 => 'there',
2 => null,
3 => null,
4 => 3,
);
var_dump(count($arr));
Output:
int(5)
count() or sizeof
Works for me w/ NULL
$array = array('hello', 'there', NULL, NULL, 3);
echo "<pre>".print_r($array, true)."</pre><br />";
echo "Count: ".count($array)."<br />";
output
Array
(
[0] => hello
[1] => there
[2] =>
[3] =>
[4] => 3
)
Count: 5
A quick Google search for PHP Array should pull up results of all the functions available
Below code was tested with PHP 5.3.2. and the output was int 5
.
$a = array(
0 => 'hello',
1 => 'there',
2 => null,
3 => null,
4 => 3,
);
var_dump(count($a));
Can you please provide more information about null
not being counted? An older version maybe? Or simply messing with the rest of us? :)
EDIT: well, posted wrong code :)
echo count($array);
精彩评论