3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string = "list page.php?cpage=1, list page.php?cpage=2, list page.php?cpage=3 thats all"; preg_match_all("/cpage=[0-9]/", $string, $matches); foreach($matches[0] as $value) { echo $value . '/'; $string = str_replace("?cpage=", "/", $matches); } //echo $string; //hasil list page.php1, list page.php2, list page.php3 thats all //yg diinginkan list page.php/1/, list page.php/2/, list page.php/3/ thats all
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
cpage=1/ Warning: Array to string conversion in /in/LFIO3 on line 12 cpage=2/ Warning: Array to string conversion in /in/LFIO3 on line 12 cpage=3/ Warning: Array to string conversion in /in/LFIO3 on line 12
Output for 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
cpage=1/cpage=2/cpage=3/

preferences:
219.81 ms | 403 KiB | 257 Q