PHP:用正则表达式从简介中删除锚和其他标记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP:用正则表达式从简介中删除锚和其他标记相关的知识,希望对你有一定的参考价值。

"Recently I was playing around with WordPress’ wp_posts table. I wanted to grab the basic information about my posts (ID, title, content, slug) and build a quick summary list of them. One problem I ran into was creating a content “intro.” Luckily a quick regular expression allowed me to create the intro."
  1. preg_match("/<p>(.*)</p>/",$post['post_content'],$matches);
  2. $intro = strip_tags($matches[1]); //removes anchors and other tags from the intro

以上是关于PHP:用正则表达式从简介中删除锚和其他标记的主要内容,如果未能解决你的问题,请参考以下文章

PHP/SSH 正则表达式脚本/命令从许多文件中删除相同的恶意软件代码

正则表达式删除所有空的 HTML 标记

正则表达式匹配 MySQL 注释

从字符串中删除 HTML 标记的正则表达式 [重复]

从 HTML 标记中删除样式属性

正则表达式 - 将 HTML 转换为有效的 XML 标记 [重复]