如何用PHP从HTML字符串中仅提取文本?

前端之家收集整理的这篇文章主要介绍了如何用PHP从HTML字符串中仅提取文本?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想只从PHP字符串中提取文本.

这个PHP字符串包含像标签等的HTML代码.

所以我只需要这个字符串中的简单文本.

这是实际的字符串:

<div class="devblog-index-content battlelog-wordpress">
<p><strong>The celebration of the Recon class in our second </strong><a href="http://blogs.battlefield.com/2014/10/bf4-class-week-recon/" target="_blank">BF4 Class Week</a><strong> continues with a sneaky stroll down memory lane. Learn more about how the Recon has changed in appearance,name and weaponry over the years&hellip;</strong></p>

<p>&nbsp;</p>

<p style="text-align:center"><a href="http://eaassets-a.akamaihd.net/battlelog/prod/954660ddbe53df808c23a0ba948e7971/en_US/blog/wp-content/uploads/2014/10/bf4-history-of-recon-1.jpg?v=1412871863.37"><img alt="bf4-history-of-recon-1" class="aligncenter" src="http://eaassets-a.akamaihd.net/battlelog/prod/954660ddbe53df808c23a0ba948e7971/en_US/blog/wp-content/uploads/2014/10/bf4-history-of-recon-1.jpg?v=1412871863.37" style="width:619px" /></a></p>

我想从字符串中显示

The celebration of the Recon class in our second BF4 Class Week continues with a sneaky stroll down memory lane. Learn more about how the Recon has changed in appearance,name and weaponry over the years…

实际上这个文本将放在元描述标签中,所以我不需要元标记中的任何HTML.
我怎么能这样做?关于这种技术的任何想法和想法?

你可以尝试:
echo(strip_tags($your_string));

更多信息:http://php.net/manual/en/function.strip-tags.php

原文链接:https://www.f2er.com/php/137227.html

猜你在找的PHP相关文章