How to remove key names from array in php

藏色散人
Release: 2023-02-28 22:10:01
Original
3305 people have browsed it

How to remove key names from array in php

php method to remove the key name of the array

In PHP, you can use the array_values() function to remove the array key name.

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)
Copy after login

Parameters: array required. Specifies an array.

Return value: Returns an array containing all the values ​​in the array.

PHP Version: 4

Example

Return all values ​​in the array (key names are not retained):

<?php
$a=array("Name"=>"Peter","Age"=>"41","Country"=>"USA");
print_r(array_values($a));
?>
Copy after login

Output :

Array ( [0] => Peter [1] => 41 [2] => USA )
Copy after login

Recommended: "PHP Tutorial"

The above is the detailed content of How to remove key names from array in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template