CronLingo\Parser::compileRegex PHP 메소드

compileRegex() 보호된 메소드

Concatenate regex expressions into a single regex for performance
protected compileRegex ( ) : string
리턴 string
    protected function compileRegex()
    {
        $regex = '~(' . implode(')|(', array_keys($this->tokenMap)) . ')~iA';
        return $regex;
    }