How to get number of elements in an Array? explain with example

PHP offers count() and sizeof() functions. The count() and sizeof() both functions are used to count all elements in an array and return 0 for a variable that has been initialized with an empty array. These are theย built-inย functions of PHP. We can use either count() or sizeof() function to count the total number of elements present in an array.

Syntax:

count(array)

Example:-

<?php
  $days = array("Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat");
 

  echo 'Total number of elements in the $days array is - ' . count($days);
  echo "<br>";
  echo 'Total number of elements in the $days array is - ' . sizeof($days);
?>  

Output:-

Total number of elements in the $days array is - 7
Total number of elements in the $days array is - 7

Related Posts

Associative Array in PHP?

An associative array is a simple and very important array of PHP. This array is also used the most, it is very easy to understand this array,…

How to work in functions PHP?

If there is any task in your program which you train to execute repeatedly then instead of writing the code for that task at a different place…

For Loofs in PHP

In for-loop initialization, condition and increment happen on the same line. The loop keeps on repeating as long as the condition is true. When the for loop…

If Else Conditionals in Php?

If Else statement is the most important feature of any programming language, PHP is used to run any Code Of Block according to If Else conditions. This…

What are operators in PHP? PHP – Operator Types

Operators are used to developing data. In Programming Languages, Operators are taken from Mathematics and Operator Programmers work with Data. An operator is a chain of symbols…

String Functions in PHP?

When many characters are written together in sequence, they form a string. For example, India is a string. It is made up of i, n, d, i,…

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x