In PHP, you can use the "array_values" function to remove the key of the array. The function of this function is to return an array containing all the values in the array. Its syntax is "array_values(array)". The parameter array represents the specified array. .
php remove the key of the array
You can use the array_values() function.
Definition and usage
array_values() function returns an array containing all the values in the array.
Tip: The returned array will use numeric keys, starting from 0 and increasing by 1.
Syntax
array_values(array)
Parameters
array required. Specifies an array.
Return value: Returns an array containing all the values in the array.
PHP Version: 4
For more related knowledge, please visit PHP Chinese website!
The above is the detailed content of How to remove the key of an array in php. For more information, please follow other related articles on the PHP Chinese website!