i've got an array with string values.
i want to search for a pattern with regex and if matched, remove the key containing the value.
how would i accomplish this?
i've got an array with string values.
i want to search for a pattern with regex and if matched, remove the key containing the value.
how would i accomplish this?
 
    
    preg_grep: http://php.net/manual/en/function.preg-grep.php
$a = array('foo' => 'xx', 'bar' => '12');
$b = preg_grep('~[a-z]~', $a, PREG_GREP_INVERT);
print_r($b);
 
    
    foreach($array as $key => $value) {
    if(preg_match($pattern, $value)) {
        unset($array[$key]);
    }
}
