3v4l.org

run code in 300+ PHP versions simultaneously
<?php $Address = "/clanek/12345/komentare"; $Map = array( "/clanky" => "Clanky.php", "/clanek/([^/]*)" => "Blog.php", "/clanek/([^/]*)/komentare" => "Blog.php", "/" => "Main.php" ); foreach ($Map as $Key => $Value) { if (preg_match('~^'.str_replace('~', '\~', $Key).'$~', $Address, $Matches)) { echo "Obsauje: $Key\n"; var_dump($Matches); } }

preferences:
49.92 ms | 402 KiB | 5 Q