详情页

帝国cms去除文章字段中所有的url链接

时间:2024年03月02日

编辑:佚名

例子是过滤投稿中A链接,就是有A链接的去掉A链接 
function user_newstextg($mid,$f,$isadd,$isq,$value,$cs){ //去除投稿中所以URL链接
str1=preg_replace("/<a[^>]*>/","",$value);
str2=preg_replace("/<\/a>/","",$str1);
str3=preg_replace("/(<img.*?)(alt=[\"\']?.*?[\"\'])(\s+|>)/",'$1alt="图片来源78模板网:www.78moban.com"$3′,$str2); //过掉掉图片中的ALT正则
return $str3;

替换掉图片中ALT 
str1=preg_replace("/<a[^>]*>/","",$value);
str2=preg_replace("/<\/a>/","",$str1); 是替换掉A链接 
相关文章
猜你需要