Count Length Array Php Code Example


Example 1: php array length


count($myArray);

Example 2: php length of array


<?php
$arr = ["one", "two", "three", "four"];
echo count($arr);
?>

Example 3: php array lenght


<?php
$cars=array("Volvo","BMW","Toyota");
echo count($cars);
?>

Example 4: array length php


// https://www.php.net/manual/en/function.count.php
$a = array(1,3,5);
echo count($a);
// -> 3

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools