Hello folks! welcome back to a new edition of our tutorial on PHP. In this tutorial guide, we are going to be studying about the PHP sizeof() Function.
The built-in PHP sizeof() function counts elements in an array, or the properties in an object.
If the optional mode parameter is set to COUNT_RECURSIVE (or 1), then sizeof() function will recursively count the array. This is particularly useful for counting all the elements of a multidimensional array. The stock value for mode is 0. The sizeof() function does not detect infinite recursion.
The built-in PHP sizeof() function counts elements in an array, or the properties in an object.
If the optional mode parameter is set to COUNT_RECURSIVE (or 1), then sizeof() function will recursively count the array. This is particularly useful for counting all the elements of a multidimensional array. The stock value for mode is 0. The sizeof() function does not detect infinite recursion.
Syntax
Following below is the syntax to use this function -
sizeof($array, $mode );
READ: PHP | shuffle() Function
Parameter Details
Sr.No | Parameter & Description |
---|---|
1 | array Required. Specifies an array |
2 | mode Optional. Specifies the mode of the function. |
Return Value
This built-in function returns the number of elements in an array.
Example
Try out the below example -
<?php $a[0] = 1; $a[1] = 3; $a[2] = 5; $result = sizeof($a); print($result); ?>
Output
When the above code is executed, it will produce the following result -
3
READ: PHP | reset() Function
Alright guys! This is where we are going to be rounding up for this tutorial post. In our next tutorial, we are going to be discussing about the PHP sort() Function.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and we will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.