InterviewSolution
Saved Bookmarks
| 1. |
How You Will Find The Number Of Elements Present In An Array ? |
|
Answer» To FIND the no. of elements in an array, you can EITHER use COUNT() or sizeof() function Ex: count($array) or sizeof($array). To find the no. of elements in an array, you can either use count() or sizeof() function Ex: count($array) or sizeof($array). |
|