Array Length Php Code Example


Example 1: php string length

<?php $str = 'abcdef'; echo strlen($str); // 6  $str = ' ab cd '; echo strlen($str); // 7 ?>

Example 2: php array length

count($myArray);

Example 3: php length of array

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

Example 4: php array lenght

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

Example 5: get array length using php

// using count() we can get proper length of the array $names = array("Ankur","Raj","Ram","Suresh"); // pass array into count() as parameter it will return array length echo count($names);  // output : 4

Example 6: 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

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?