Answers for "php how to count array"

PHP
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