• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

解析php利用正则表达式解决采集内容排版的问题_php技巧

php 搞代码 4年前 (2022-01-26) 30次浏览 已收录 0个评论

做采集经常遇到的问题是内容排版问题,用了一些时间写了个用正则替换html标签和样式的函数,共享下。

/**<BR> * 格式化内容<BR> * @param string $content 内容最好统一用utf-8编码<BR> * @return string<BR> * !本函数需要开启tidy扩展<BR> */<BR>function removeFormat($content) {<BR> $replaces = array (<BR>   "/<font>/i" => '',<BR>   "/<\/font>/i" => '',<BR>   "/<strong>/i" => '',<BR>   "/<\/strong>/i" => '',<BR>   "/<span>/i" => '',<BR>   "/<\/span>/i" => '',<BR>   "/<div>/i" => "<p>",<BR>   "/<\/div>/i" => "</p>",<BR>   "/<!---ecms -ecms *-->/i"=>'',<BR>   /* "/<table>/i" => '',//遇到有表格的内容就不要启用<BR>   "/<\/table>/i" => '',<BR>   "/<tbody>/i" => '',<BR>   "/<\/tbody>/i" => '',<BR>   "/<tr>/i" => '<p>',<BR>   "/<\/tr>/i" => '</p>',<BR>   "/<td>/i" => '', */<BR>   "/style=.+?['|\"]/i" => '',<BR>   "/class=.+?['|\"]/i" => '',<BR>   "/id=.+?['|\"]/i"=>'',<BR>   "/lang=.+?['|\"]/i"=>'',<BR>   //"/width=.+?['|\"]/i"=>'',//不好控制注释掉<BR>   //"/height=.+?['|\"]/i"=>'',<BR>   "/border=.+?['|\"]/i"=>'',<BR>   "/face=.+?['|\"]/i"=>'',<BR>   "/<br>[ ]*/i" => "</p><p>",<BR>   "/<iframe.*?>.<mark style="color:transparent">来4源gaodaimacom搞#代%码*网</mark><code>搞代gaodaima码</code>*<\/iframe>/i" => '',<BR>   "/ /i" => ' ',//空格替换掉<BR>   "/<p>[ |\x{3000}|\r\n]*/ui" => '<p>    ',//替换半角、全角空格,换行符,用 排除写入数据库时产生的编码问题<br><br> );<BR> $config = array(<BR>         //'indent' => TRUE, //是否缩进  <BR>                'output-html' => TRUE,//是否是输出xhtml  <BR>                'show-body-only'=>TRUE,//是否只获得到body  <BR>               'wrap' => 0<BR>    );<BR> $content = tidy_repair_string($content, $config, 'utf8');//先利用php自带的tidy类库修复html标签,不然替换的时候容易出现各种诡异的情况<BR> $content = trim($content);<BR> foreach ( $replaces as $k => $v ) {<BR>  $content = preg_replace ( $k, $v, $content );<BR> }<br><br> if(strpos($content,'<p>')>6)//部分内容开头可能缺失<p>标签<BR>  $content = '<p>    '.$content;<br><br> $content = tidy_repair_string($content, $config, 'utf8');//再修复一次,可以去除html空标签<BR> $content = trim($content);<BR> return $content;<BR>}<BR>

搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:解析php利用正则表达式解决采集内容排版的问题_php技巧
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址