<#+[a-z]+#+(\d*)#\d*#\d*#\d*##>
echo $text;
echo imgReplace($text);
function imgReplace($text)
{
return preg_replace_callback(PATTERN, function ($id) {
$sql = 'select smallURL from Images where id = ' . (int) $id;
// mysql query and fetch
return '<img scr="' . $img . '">';
}, $text);
}