sizeof php code example

Example 1: how to check php string length

<?php
$name = 'abcdef';
echo strlen($str); // 6

$string = ' ab cd ';
echo strlen($str); // 7
?>

Example 2: php length of array

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

Example 3: 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 4: php sizeof

#logo {
  width: 5em;
  height: 5em;
  background: #ABC;
}
.main-page #logo {
  position: absolute;
  left: 1em;
  top: 1em;
}