3v4l.org

run code in 300+ PHP versions simultaneously
<?php function remove_shout($_text,$_max_caps=3) { return preg_replace_callback('/[A-Z]{$_max_caps,}/',create_function('$matches','return strtolower($matches[0]);'),$_text); } $input = "This is so AWESOME!"; echo remove_shout($input);
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Call to undefined function create_function() in /in/Zm2Ff:5 Stack trace: #0 /in/Zm2Ff(10): remove_shout('This is so AWES...') #1 {main} thrown in /in/Zm2Ff on line 5
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.12 - 7.3.31, 7.4.0 - 7.4.25, 7.4.27 - 7.4.33
Deprecated: Function create_function() is deprecated in /in/Zm2Ff on line 5 This is so AWESOME!
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.30, 7.0.0 - 7.0.20, 7.1.0 - 7.1.20, 7.3.32 - 7.3.33, 7.4.26
This is so AWESOME!

preferences:
219.91 ms | 402 KiB | 318 Q