public function imageUrl($content)
{
創(chuàng)新互聯(lián)于2013年創(chuàng)立,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元慶陽做網(wǎng)站,已為上家服務(wù),為慶陽各地企業(yè)和個人服務(wù),聯(lián)系電話:18982081108
if (preg_match('/(http:\/\/)|(https:\/\/)/i', $content)) {
$url = "";
}else{
$url = "http://" . $_SERVER['SERVER_NAME'];
}
$pregRule = "/<[img|IMG].*?src=[\'|\"](.*?(?:[\.jpg|\.jpeg|\.png|\.gif|\.bmp]))[\'|\"].*?[\/]?>/";
$list = preg_replace($pregRule, '', $content);
return $list;
}