Home > php教程 > PHP源码 > array_keys:返回数组中符合条件的键,组成为一个新的数组

array_keys:返回数组中符合条件的键,组成为一个新的数组

PHP中文网
Release: 2016-05-23 16:40:19
Original
2270 people have browsed it


$array = [
	'a' => 'abc',
	'aa' => 'abc',
	'aaa' => 'abc',
	'b' => 'bbc',
	'c' => 'cbc',
	'd' => 123,
	1 => '123',
	2 => 123
];

$arr = array_keys($array,'123',false);

echo '';
print_r($arr);

result:
Array
(
    [0] => d
    [1] => 1
    [2] => 2
)		            		        	
			
Copy after login
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
Latest Articles by Author
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template