⚙️
PHP Tools Hub
Tools
PHP
Quick
Contact
Home
>
Tutorials
>
PHP
>
PHP Arrays
>
Array Functions
Array Functions Tutorials
30 tutorials found.
📘
Get Array Length
Array Functions | count Function | PHP
📘
Count Alias Function
Array Functions | sizeof Alias | PHP
📘
Add Element to End
Array Functions | array_push | PHP
📘
Remove Element from End
Array Functions | array_pop | PHP
📘
Remove Element from Start
Array Functions | array_shift | PHP
📘
Add Element to Start
Array Functions | array_unshift | PHP
📘
Merge Multiple Arrays
Array Functions | array_merge | PHP
📘
Merge Nested Arrays
Array Functions | array_merge_recursive | PHP
📘
Keys and Values to Array
Array Functions | array_combine | PHP
📘
Get All Keys
Array Functions | array_keys | PHP
📘
Get All Values
Array Functions | array_values | PHP
📘
Check Key Exists
Array Functions | array_key_exists | PHP
📘
Check Value Exists
Array Functions | in_array | PHP
📘
Search Value Return Key
Array Functions | array_search | PHP
📘
Reverse Array Order
Array Functions | array_reverse | PHP
📘
Extract Portion of Array
Array Functions | array_slice | PHP
📘
Remove Replace Portion
Array Functions | array_splice | PHP
📘
Remove Duplicate Values
Array Functions | array_unique | PHP
📘
Apply Function to Elements
Array Functions | array_map | PHP
📘
Filter Elements by Callback
Array Functions | array_filter | PHP
📘
Reduce to Single Value
Array Functions | array_reduce | PHP
📘
Sum of Values
Array Functions | array_sum | PHP
📘
Product of Values
Array Functions | array_product | PHP
📘
Random Key from Array
Array Functions | array_rand | PHP
📘
Randomize Array Order
Array Functions | shuffle | PHP
📘
Create Array of Range
Array Functions | range | PHP
📘
Fill Array with Values
Array Functions | array_fill | PHP
📘
Fill with Keys
Array Functions | array_fill_keys | PHP
📘
Pad Array to Size
Array Functions | array_pad | PHP
📘
Split into Chunks
Array Functions | array_chunk | PHP