3v4l.org

run code in 300+ PHP versions simultaneously
<?php $input = 'Lorem Ipsum is simply dummy text of the printing industry.'; $except = array('and', 'the', 'text', 'simply'); preg_match_all('/(?<match>\w{3,}+)/', $input, $matches, PREG_PATTERN_ORDER); print_r(array_diff($matches['match'], $except));

preferences:
50.65 ms | 402 KiB | 5 Q