//change img to img tags - autoimage
$text = preg_replace("#(^|^\]|[\r\n ]|^\])((http|https|ftp|ftps)://[\w\#$%&~/.\-;:=,?@\[\]+]*)(.jpg|.jpeg|.png|.gif)(^|^\[|[\r\n ])#si", "\\1
", $text);
$text = preg_replace("#(^|^\]|[\r\n ]|^\])((www|ftp)\.[\w\#$%&~/.\-;:=,?@\[\]+]*)(.jpg|.jpeg|.png|.gif)(^|^\[|[\r\n ])#si", "\\1
", $text);
$text = preg_replace("#(^|^\]|[\r\n ]|^\])([\w\#$%&~/.\-;:=,?@\[\]+]*)(.jpg|.jpeg|.png|.gif)(^|^\[|[\r\n ])#si", "\\1
", $text);
//change img to img tags - autoimage
//change url text to clickable links - autolink[.jpeg|.jpg|.png|.gif]
$text = preg_replace("#(^|[\r\n ]|^\])([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*)(^|^\[|[\r\n ])#si", "\\1\\2", $text);
$text = preg_replace("#(^|[\r\n ]|^\])((www|ftp)\.[\w\#$%&~/.\-;:=,?@\[\]+]*)(^|^\[|[\r\n ])#si", "\\1\\2", $text);
$text = preg_replace("#(^|[\r\n ]|^\])([a-z0-9&\-_.]+?)@([\w\-]+\.([\w\-\.]+\.)*[\w]+)(^|^\[|[\r\n ])#i", "\\1\\2@\\3", $text);
//change url text to clickable links - autolink