programming-examples/php/_Basics/Program to find number of elements in an array..php
2019-11-15 12:59:38 +01:00

7 lines
69 B
PHP

<?php
$arr = array(10,20,30,40,50);
echo count($arr);
?>