eZ\Publish\Core\Repository\URLWildcardService::compile PHP 메소드

compile() 개인적인 메소드

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