Answers for "count array element php"

PHP
30

php length of array

<?php
	$arr = ["one", "two", "three", "four"];
	echo count($arr);
  ?>
Posted by: Guest on December-29-2019
0

php how to count array

$array = ['x', 'y', 'z'];
count($array); // output 3
size_of($array); // output 3
Posted by: Guest on September-22-2021

Browse Popular Code Answers by Language