2010-02-21 64 views

回答

3
foreach($array as $key => $value) { 
    if(preg_match($pattern, $value)) { 
     unset($array[$key]); 
    } 
} 
相关问题