💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
~~~ /** * 处理内容中的img链接 * * @param $description * @return string|string[]|null */ function get_img_thumb_url($content = "", $suffix = "") { $pregRule = "/<[img|IMG].*?src=[\'|\"](.*?(?:[\.jpg|\.jpeg|\.png|\.gif|\.bmp]))[\'|\"].*?[\/]?>/"; preg_match($pregRule, $content, $match); if ( ! empty($match)) { $matchA = $match[1]; $preg = "/^http(s)?:\\/\\/.+/"; if ( ! preg_match($preg, $matchA)) { $content = preg_replace($pregRule, '<img src="'.$suffix.'${1}">', $content); } else { $content = preg_replace($pregRule, '<img src="${1}">', $content); } } else { $content = preg_replace($pregRule, '<img src="${1}">', $content); } return $content; } ~~~ ~~~