转义html标签并只读取php中的文本?
我想知道是否有一种方法可以从一堆 html 代码中转义所有 html 标签,并仅提取文本
<strong>this is strong</strong>
<br />
<h1> this is a header</h1>
,即我只想获取标签之间的文本,所以基本上只 这很强大,这是一个标题
I was wondering is there a way to escape all html tags from a a bunch of html code, and extract only the text i.e.
<strong>this is strong</strong>
<br />
<h1> this is a header</h1>
and I want to get the text between the tags only, so basically onlythis is strong this is a header
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我喜欢 PHP 的原因之一是为 Web 开发人员提供贴心的功能。
One of the things I love about PHP...thoughtful functions for web developers.
像这样使用 strip_tags() :
Use strip_tags() like this:
使用 strip_tags 函数
将输出
use strip_tags function
will output
要删除整个 HTML 块,http://www.phpro.org /examples/Get-Text-Between-Tags.html 有一些很好的功能和示例。
To strip an entire block of HTML, http://www.phpro.org/examples/Get-Text-Between-Tags.html has some good functions and examples.