©
Dokumen ini menggunakan Manual laman web PHP Cina Lepaskan
(PHP 4, PHP 5)
preg_grep — 返回匹配模式的数组条目
$pattern
, array $input
[, int $flags
= 0
] )
返回给定数组input
中与模式pattern
匹配的元素组成的数组.
pattern
要搜索的模式, 字符串形式.
input
输入数组.
flags
如果设置为 PREG_GREP_INVERT
, 这个函数返回输入数组中与
给定模式pattern
不匹配的元素组成的数组.
返回使用input
中key做索引的数组.
版本 | 说明 |
---|---|
4.2.0 |
增加了参数flags .
|
4.0.4 |
在此版本之前, 返回数组的索引与 如果你想仿照这种旧有的行为, 在返回数组上使用 array_values() 重建索引. |
Example #1 preg_grep() 示例
<?php
// 返回所有包含浮点数的元素
$fl_array = preg_grep ( "/^(\d+)?\.\d+$/" , $array );
?>
[#1] vickyssj7 at gmail dot com [2014-10-05 14:02:26]
A very simple example to match multiple "."(dot) in an array value:-
<?php
$array = array("23.32","22","12.009","23.43.43");
print_r(preg_grep("/^(\d+)?\.\d+\.\d+$/",$array));
?>
[#2] Daniel Klein [2013-03-14 22:54:09]
A shorter way to run a match on the array's keys rather than the values:
<?php
function preg_grep_keys($pattern, $input, $flags = 0) {
return array_intersect_key($input, array_flip(preg_grep($pattern, array_keys($input), $flags)));
}
?>
[#3] keithbluhm at gmail dot com [2010-01-21 15:56:12]
Run a match on the array's keys rather than the values:
<?php
function preg_grep_keys( $pattern, $input, $flags = 0 )
{
$keys = preg_grep( $pattern, array_keys( $input ), $flags );
$vals = array();
foreach ( $keys as $key )
{
$vals[$key] = $input[$key];
}
return $vals;
}
?>