Home > Backend Development > PHP Tutorial > php怎么去掉数组键名

php怎么去掉数组键名

PHPz
Release: 2020-09-04 18:05:35
Original
2012 people have browsed it

php去掉数组键名的方法:可以使用【array_values()】函数来实现。【array_values()】函数可以返回包含数组中所有的值的数组,语法为:【array_values(array)】。

php怎么去掉数组键名php数组怎么去掉键名?

定义和用法

array_values() 函数返回包含数组中所有的值的数组。

提示:被返回的数组将使用数值键,从 0 开始且以 1 递增。

语法

array_values(array)
Copy after login

参数

array 必需。规定数组。

返回值: 返回包含数组中所有的值的数组。

示例:

返回数组中所有的值(不保留键名):

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

运行结果:

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

更多相关知识,请访问PHP中文网

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