eZ\Publish\Core\Repository\URLWildcardService::compile PHP Method

compile() private method

Compiles the given url pattern into a regular expression.
private compile ( string $sourceUrl ) : string
$sourceUrl string
return string
    private function compile($sourceUrl)
    {
        return '(^' . str_replace('\\*', '(.*)', preg_quote($sourceUrl)) . '$)U';
    }