Answers for "is there a way to count amount of arrays in php"

PHP
30

php length of array

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

Code answers related to "is there a way to count amount of arrays in php"

Browse Popular Code Answers by Language