Answers for "php how to see the length of an array"

PHP
39

php length of array

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

Code answers related to "php how to see the length of an array"

Browse Popular Code Answers by Language