3v4l.org

run code in 300+ PHP versions simultaneously
<?php function configure_apple_content( $content ) { $remov = array("[", "]"); $replc = array("<", ">"); $content = str_replace($remov, $replc, $content); return $content; } $in ="[red]Red[/red]"; Echo "Input: ".$in."\n"; Echo "Output: ".configure_apple_content($in);

preferences:
26.13 ms | 404 KiB | 5 Q