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)));
}
?>
(PHP 4, PHP 5, PHP 7)
preg_grep — Return array entries that match the pattern
$pattern
, array $input
[, int $flags
= 0
] )
Returns the array consisting of the elements of the
input
array that match the given
pattern
.
pattern
The pattern to search for, as a string.
input
The input array.
flags
If set to PREG_GREP_INVERT
, this function returns
the elements of the input array that do not match
the given pattern
.
Returns an array indexed using the keys from the
input
array.
Example #1 preg_grep() example
<?php
// return all array elements
// containing floating point numbers
$fl_array = preg_grep("/^(\d+)?\.\d+$/", $array);
?>
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)));
}
?>
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;
}
?>
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));
?>