Home > php教程 > php手册 > body text

array_flip:交换一个一维数组的键和值

WBOY
Release: 2016-06-06 19:39:35
Original
958 people have browsed it

arrayarray_flip(array$array) 将$array的键和值交换返回一个新的数组 $arr = [1 = 'a',2 = 'b',3 = 'c'];$arr = array_flip($arr);echo 'pre';print_r($arr);result:Array( [a] = 1 [b] = 2 [c] = 3)

array array_flip ( array $array )
将$array 的键和值交换返回一个新的数组

$arr = [
	1 => 'a',
	2 => 'b',
	3 => 'c'
];

$arr = array_flip($arr);

echo '<pre class="brush:php;toolbar:false">';
print_r($arr);

result:
Array
(
    [a] => 1
    [b] => 2
    [c] => 3
)
Copy after login

Related labels:
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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!