lithium\util\Inflector::_enclose PHP 메소드

_enclose() 보호된 정적인 메소드

Enclose a string for preg matching.
protected static _enclose ( string $string ) : string
$string string String to enclose
리턴 string Enclosed string
    protected static function _enclose($string)
    {
        return '(?:' . $string . ')';
    }