Member
cristobal
How to get length of an array in PHP ?
bailey_conroy
PHP count function is used to get the length or numbers of elements in an array
1 2 3 4 5 6
<?php // initializing an array in PHP $array=['a','b','c']; // Outputs 3 echo count($array); ?>