JBZoo\Utils\Url::_linkifyCallback PHP Method

_linkifyCallback() protected static method

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