programming-examples/php/Basics/Program to find number of elements in an array..php

7 lines
69 B
PHP
Raw Normal View History

2019-11-18 14:44:36 +01:00
<?php
$arr = array(10,20,30,40,50);
echo count($arr);
?>