打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
PHP去除文章的html格式
function cutstr_html($string,$length=0,$ellipsis='…'){
$string=strip_tags($string);
$string=preg_replace('/\n/is','',$string);
$string=preg_replace('/ | /is','',$string);
$string=preg_replace('/ /is','',$string);
preg_match_all("/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|\xe0[\xa0-\xbf][\x80-\xbf]|[\xe1-\xef][\x80-\xbf][\x80-\xbf]|\xf0[\x90-\xbf][\x80-\xbf][\x80-\xbf]|[\xf1-\xf7][\x80-\xbf][\x80-\xbf][\x80-\xbf]/",$string,$string); if(is_array($string)&&!empty($string[0])){
if(is_numeric($length)&&$length){
$string=join('',array_slice($string[0],0,$length)).$ellipsis;
}else{
$string=implode('',$string[0]);
}
}else{
$string=''; }
return $string;
}
function clearHtml($content)
{
$content = preg_replace("/<a[^>]*>/i", "", $content);
@$content = preg_replace("/<\/a>/i", "", $content);
$content = preg_replace("/<div[^>]*>/i", "", $content);
@$content = preg_replace("/<\/div>/i", "", $content);
$content = preg_replace("/<!--[^>]*-->/i", "", $content);//注释内容
$content = preg_replace("/style=.+?['|\"]/i", '', $content);//去除样式
$content = preg_replace("/class=.+?['|\"]/i", '', $content);//去除样式
$content = preg_replace("/id=.+?['|\"]/i", '', $content);//去除样式
$content = preg_replace("/lang=.+?['|\"]/i", '', $content);//去除样式
$content = preg_replace("/width=.+?['|\"]/i", '', $content);//去除样式
$content = preg_replace("/height=.+?['|\"]/i", '', $content);//去除样式
$content = preg_replace("/border=.+?['|\"]/i", '', $content);//去除样式
$content = preg_replace("/face=.+?['|\"]/i", '', $content);//去除样式
$content = preg_replace("/face=.+?['|\"]/", '', $content);//去除样式 只允许小写 正则匹配没有带 i 参数
return $content;
}
本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
php截取html字符串自动补全html标签
WordPress纯代码纯静态开启七牛CDN并集成七牛缩略图和水印功能
PHP删除HTML标签
java 去html标签,去除字符串中的空格,回车,换行符,制表符 - 菜菜 - Java...
ecshop优化清除页面无用代码压缩
UBB 转换函数演示
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服