<?php $urls = [ "/folder123/?id=foo", "index.php?id=foo" ]; foreach ($urls as $url) { preg_replace_callback('#^(?:/folder123/|index\.php)\K.*$#', function ($match) { var_dump($match[0]); }, $url); }
You have javascript disabled. You will not be able to edit any code.