Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <?php $input = [ "Rouge", "Rose", "Vert", "Bleu", "Violet" ]; $result = preg_grep("/^p/i", $input, PREG_GREP_INVERT); print_r($result); ?> </body> </html>
Array ( [0] => Rouge [2] => Vert [3] => Bleu )