3v4l.org

run code in 300+ PHP versions simultaneously
<?php var_dump(simplified_fnmatch('/lejebolig/*.html', 'lejebolig/1.html')); function simplified_fnmatch($pattern, $string) { // fnmatch is a function available on linux systems, which sees if a $pattern string with wildcards matches a string, using linux shell rules // the simplified_fnmatch function escapes ?,[], and {} characters, so as to only apply the * wildcard // it also uses the FNM_CASEFOLD flag, since in URLs case does not matter $escaped_pattern = ''; for ($i = 0; $i < strlen($pattern); $i++) { if (($pattern[$i] == '?') || ($pattern[$i] == '[') || ($pattern[$i] == ']') || ($pattern[$i] == '{') || ($pattern[$i] == '}')) $escaped_pattern .= '\\'; $escaped_pattern .= $pattern[$i]; } return fnmatch($escaped_pattern, $string, FNM_CASEFOLD); }

preferences:
36.33 ms | 402 KiB | 5 Q