$text = preg_replace('#\[link\]([\r\n]*)(http://|ftp://|https://|ftps://)([^\s\'\";\+]*?)([\r\n]*)\[/link\]#si', '\2\3', $text);
$text = preg_replace('#\[link\]([\r\n]*)([^\s\'\";\+]*?)([\r\n]*)\[/link\]#si', '\2', $text);
$text = preg_replace('#\[link=([\r\n]*)(http://|ftp://|https://|ftps://)([^\s\'\";\+]*?)\](.*?)([\r\n]*)\[/link\]#si', '\4', $text);
$text = preg_replace('#\[link=([\r\n]*)([^\s\'\";\+]*?)\](.*?)([\r\n]*)\[/link\]#si', '\3', $text);