3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string = "list page.php?cpage=1, list page.php?cpage=2, list page.php?page=3 thats all"; $string = preg_replace("/\?cpage=[0-9]/", "/", $string); echo $string; //result //list page.php/, list page.php/, list page.php/ thats all //what i want //list page.php/1/, list page.php/2/, list page.php/3/ thats all

preferences:
12.55 ms | 404 KiB | 5 Q