Answers for "sizeof and count in php"

PHP
8

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
Posted by: Guest on June-03-2020
-2

php sizeof

#logo {
  width: 5em;
  height: 5em;
  background: #ABC;
}
.main-page #logo {
  position: absolute;
  left: 1em;
  top: 1em;
}
Posted by: Guest on October-17-2020

Browse Popular Code Answers by Language