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 — Retourne un tableau avec les résultats de la recherche
$pattern
, array $input
[, int $flags
= 0
] )
preg_grep() retourne un tableau qui contient
les éléments de input
qui satisfont le masque pattern
.
pattern
Le motif à chercher, sous la forme d'une chaîne de caractères.
input
Le tableau d'entrée.
flags
Si cette option vaut PREG_GREP_INVERT
,
cette fonction retourne les éléments du tableau
input
qui ne correspondent
pas au motif
pattern
.
Retourne un tableau indexé, en utilisant les clés du
tableau input
d'entrée.
Exemple #1 Exemple avec preg_grep()
<?php
// Recherche les nombres à virgule flottante dans le tableau
$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;
}
?>
An even 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_flip( preg_grep($pattern, array_flip($input), $flags ) );
}
?>
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));
?>