3v4l.org

run code in 300+ PHP versions simultaneously
<?php $stopwords = "bed|badword|bud"; $lines = [ 'Good morning everyone', 'Make your bed and brush your hair', 'Finish your breakfast', 'Do not say badwords', 'Will you be my buddy?', ]; var_export(preg_grep("#$stopwords#", $lines));
Output for 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
array ( 1 => 'Make your bed and brush your hair', 3 => 'Do not say badwords', 4 => 'Will you be my buddy?', )

preferences:
54.35 ms | 406 KiB | 5 Q