PHP | array Functions Complete Reference
PHP Arrays is a type of data structure that allows to storing multiple elements of a similar type under a single variable by saving the effort of creating a different variable for every data. The arrays are helpful to create a list of elements of similar types, which can be accessed using their index or key.
The array functions are allowed to interact and manipulate the array elements in various ways. The PHP array inbuilt functions are used for the simple and multi-dimensional array.
Installation: These functions are not required any installation. These are the part of PHP core.
The complete list of PHP array functions are given below:
- php | array_chunk() Function
- php | array_combine() Function
- php | array_count_values() Function
- php | array_diff_assoc() Function
- php | array_diff_keys() Function
- php | array_diff_uassoc() Function
- php | array_diff_ukey() Function
- php | array_diff() Function
- php | array_fill_keys() Function
- php | array_fill() Function
- php | array_filter() Function
- php | array_flip() Function
- php | array_intersect_assoc() Function
- php | array_intersect_key() Function
- php | array_intersect_uassoc() Function
- php | array_intersect() Function
- php | array_key_exists() Function
- php | array_keys() Function
- php | array_merge_recursive() Function
- php | array_multisort() Function
- php | array_pad() Function
- php | array_pop() Function
- php | array_product() Function
- php | array_push() Function
- php | array_rand() Function
- php | array_reduce() Function
- php | array_replace_recursive() Function
- php | array_replace() Function
- php | array_reverse() Function
- php | array_search() Function
- php | array_shift() Function
- php | array_slice() Function
- php | array_splice() Function
- php | array_sum() Function
- php | array_udiff_assoc() Function
- php | array_udiff() Function
- php | array_uintersect_assoc() Function
- PHP | array_uintersect_uassoc() Function
- php | array_uintersect() Function
- php | array_unique() Function
- php | array_unshift() Function
- php | array_values() Function
- php | array_walk_recursive() Function
- php | array_walk() Function
- PHP | array() Function
- PHP | arsort() Function
- PHP | asort() Function
- php | compact() Function
- php | count() Function
- php | current() Function
- php | end() Function
- php | extract() Function
- php | in_array() Function
- php | key() Function
- PHP | krsort() Function
- PHP | ksort() Function
- php | list() Function
- php | natcasesort() Function
- php | natsort() Function
- php | next() Function
- php | pos() Function
- php | prev() Function
- php | range() Function
- php | reset() Function
- php | rsort() Function
- php | shuffle() Function
- php | sizeof() Function
- php | sort() Function
- php | uasort() Function
- php | uksort() Function
- php | usort() Function
- php | each() Function
Recommended Posts:
- PHP | Ds\Map Functions Complete Reference
- CSS | Functions Complete Reference
- PHP | GMP Functions Complete Reference
- PHP | Ds\Set Functions Complete Reference
- PHP | Filesystem Functions Complete Reference
- PHP | Ds\PriorityQueue Functions Complete Reference
- PHP | IntlChar Functions Complete Reference
- PHP | Gmagick Functions Complete Reference
- PHP | Imagick Functions Complete Reference
- PHP | Ds\Stack Functions Complete Reference
- PHP | Ds\Deque Functions Complete Reference
- PHP | String Functions Complete Reference
- PHP | DS\Vector Functions Complete Reference
- PHP | DS\Sequence Functions Complete Reference
- PHP | Ds\Queue Functions Complete Reference
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.


