php function array_key_exists and regular expressions
- by Bacon
hello,
is it, please, possible to use a regular expression with the php function array_key_exists(); like this for example :
$exp = "my regex";
array_key_exists($exp, $array);
thank you !