Friday, October 10, 2025
HomeLanguagesPHP sizeof() Function

PHP sizeof() Function

In this article, we will see how to get the length of the array using the sizeof() function in PHP. The sizeof() function is a built-in function in PHP and is used to count the number of elements present in an array or any other countable object.

Syntax:

int sizeof(array, mode);

Parameter: This function accepts 2 parameters which are described below:

  • array: This parameter represents the array containing elements that we need to count.
  • mode: This is an optional parameter and specifies the mode of the function. It can take two different values as shown below: 
    • 0: It is the default, does not count all elements of multidimensional arrays
    • 1: It Counts the array recursively (counts all the elements of multidimensional arrays)

Return Value: This function returns an integer value as shown in the syntax which represents the number of elements present in the array.

We will understand the concept of the sizeof() function through the examples.

Example 1: This example illustrates the count of the number of elements in the one-dimensional array.

PHP




<?php
   // input array
   $a=array(1,2,3,4,5,6);
 
   // getting total number of elements
   // present in the array.
   $result = sizeof($a);
 
   print($result);
?>


Output:

6

Example: This example illustrates the counting the number of elements in the multi-dimensional array.

PHP




<?php
  $array = array('name' => array('Geeks', 'For', 'Geeks'),
                'article' => array('sizeof', 'function', 'PHP'));
 
  // Recursive count
  echo sizeof($array, 1);
 
  // Normal count
  echo sizeof($array);
?>


Output:

8
2

Reference: http://php.net/manual/en/function.sizeof.php

RELATED ARTICLES

Most Popular

Dominic
32349 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6717 POSTS0 COMMENTS
Nicole Veronica
11880 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6838 POSTS0 COMMENTS
Ted Musemwa
7097 POSTS0 COMMENTS
Thapelo Manthata
6792 POSTS0 COMMENTS
Umr Jansen
6792 POSTS0 COMMENTS