3v4l.org

run code in 300+ PHP versions simultaneously
<?php //Filter out the bad words function blacklist_filter($post) { $list = 'example|' .'exampletwo|' .'examplethree'; return preg_replace_callback('/\b('.$list.')\b/i', function (array $match) { return str_repeat('*', strlen($match[1])); }, $post); } echo blacklist_filter("xy EXAMPLE xy");
Output for git.master, git.master_jit, rfc.property-hooks
xy ******* xy

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
63.25 ms | 401 KiB | 8 Q