Php Function

Cat Name Description Link
array array() Creates an array
array array_change_key_case() Changes all keys in an array to lowercase or uppercase
array array_chunk() Splits an array into chunks of arrays
array array_column() Returns the values from a single column in the input array
array array_combine() Creates an array by using the elements from one "keys" array and one "values" array
array array_count_values() Counts all the values of an array
array array_diff() Compare arrays, and returns the differences (compare values only)
array array_diff_assoc() Compare arrays, and returns the differences (compare keys and values)
array array_diff_key() Compare arrays, and returns the differences (compare keys only)
array array_diff_uassoc() Compare arrays, and returns the differences (compare keys and values, using a user-defined key comparison function)
array array_diff_ukey() Compare arrays, and returns the differences (compare keys only, using a user-defined key comparison function)
array array_fill() Fills an array with values
array array_fill_keys() Fills an array with values, specifying keys
array array_filter() Filters the values of an array using a callback function
array array_flip() Flips/Exchanges all keys with their associated values in an array
array array_intersect() Compare arrays, and returns the matches (compare values only)
array array_intersect_assoc() Compare arrays and returns the matches (compare keys and values)
array array_intersect_key() Compare arrays, and returns the matches (compare keys only)
array array_intersect_uassoc() Compare arrays, and returns the matches (compare keys and values, using a user-defined key comparison function)
array array_intersect_ukey() Compare arrays, and returns the matches (compare keys only, using a user-defined key comparison function)
array array_key_exists() Checks if the specified key exists in the array
array array_keys() Returns all the keys of an array
array array_map() Sends each value of an array to a user-made function, which returns new values
array array_merge() Merges one or more arrays into one array
array array_merge_recursive() Merges one or more arrays into one array recursively
array array_multisort() Sorts multiple or multi-dimensional arrays
array array_pad() Inserts a specified number of items, with a specified value, to an array
array array_pop() Deletes the last element of an array
array array_product() Calculates the product of the values in an array
array array_push() Inserts one or more elements to the end of an array