标签剥离摘录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了标签剥离摘录相关的知识,希望对你有一定的参考价值。

Create an excerpt from the main copy, removing any image or other html tag markup so it will be clean. In this case the length is 160 characters, change that number to change the length of the excerpt
  1. public function makeNewsExcerpt($content)
  2. {
  3. $content = preg_replace("(<(/?[^>]+)>)", "", $content);
  4. $content = substr($content, 0, 160);
  5. $content .= "...";
  6. return $content;
  7.  
  8. }

以上是关于标签剥离摘录的主要内容,如果未能解决你的问题,请参考以下文章

php 从提供的内容中生成摘录。剥离HTML,删除尾随标点符号,并在删除文本时添加“更多”字符串。

PHP nodevalue剥离html标签

PHP DOM获取nodevalue html? (不剥离标签)

在 python 中使用 mechanize 剥离 html 标签并仅返回文本

从文本中剥离标签(在 React JS 中)

Wordpress 从文档中剥离 <style> 标签