JBZoo\Utils\Url::_linkifyCallback PHP 메소드

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

Part of the LinkifyURL Project
protected static _linkifyCallback ( string $matches ) : string
$matches string Matches from the preg_ function
리턴 string
    protected static function _linkifyCallback($matches)
    {
        if (isset($matches[2])) {
            return $matches[2];
        }
        return self::_linkifyRegex($matches[1]);
    }