Answers for "php getting length of arraay"

PHP
33

php length of array

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

Browse Popular Code Answers by Language