3v4l.org

run code in 300+ PHP versions simultaneously
<?php function remove_shout($_text) { return preg_replace_callback('/[A-Z]*/ms',function($matches) { var_dump($matches); exit(); return strtolower($matches[0]); },$_text); } $input = "This is so AWESOME COOL!"; echo remove_shout($input);

preferences:
51.58 ms | 402 KiB | 5 Q