thinkphp删除文章里的所有图片

/*删除文章内容图片(也就是删除编辑器上传的图片)*/
function delete_img($content){
    //匹配并删除图片

    $img_path = "/<img.*src=\"([^\"]+)\"/U";

    $matches = array();
    preg_match_all($img_path, $content, $matches);

    foreach($matches[1] as $img_url){
    //strpos(a,b) 匹配a字符串中是否包含b字符串 包含返回true
        if(strpos($img_url, 'emoticons')===false){
            $host = 'http://' . $_SERVER['HTTP_HOST'] . '/';
            $filepath = str_replace($host,'',$img_url);
            if($filepath == $img_url) $filepath = substr($img_url, 1);
            @unlink($filepath);
            $filedir  = dirname($filepath);
            $files = scandir($filedir);
            if(count($files)<=2)@rmdir($filedir);//如果是./和../,直接删除文件夹
        }
    }
    unset($matches);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值