Minify_CSS_Compressor::_selectorsCB PHP 메소드

_selectorsCB() 보호된 메소드

Replace what looks like a set of selectors
protected _selectorsCB ( array $m ) : string
$m array regex matches
리턴 string
    protected function _selectorsCB($m)
    {
        // remove ws around the combinators
        return preg_replace('/\\s*([,>+~])\\s*/', '$1', $m[0]);
    }