php – 如何从HTML中的所有标签之间获取数组中的文本?

前端之家收集整理的这篇文章主要介绍了php – 如何从HTML中的所有标签之间获取数组中的文本?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在所有< span>之间的数组中获取文本. < /跨度>标签HTML,我尝试过这个代码,但它只返回一个事件:
preg_match('/<span>(.+?)<\/span>/is',$row['tbl_highlighted_icon_content'],$matches);

echo $matches[1];

我的HTML:

<span>The wish to</span> be unfairly treated is a compromise attempt that would COMBINE attack <span>and innocen</span>ce.  Who can combine the wholly incompatible,and make a unity  of what can NEVER j<span>oin? Walk </span>you the gentle way,

我的代码仅返回一次span标签,但是我想要以HTML格式从PHP数组的形式获取每个span标签中的所有文本.

您需要切换到 preg_match_all功能

$row['tbl_highlighted_icon_content'] = '<span>The wish to</span> be unfairly treated is a compromise attempt that would COMBINE attack <span>and innocen</span>ce. Who can combine the wholly incompatible,and make a unity of what can NEVER j<span>oin? Walk </span>you the gentle way,';    

preg_match_all('/<span>.*?<\/span>/is',$matches);

var_dump($matches);

正如你可以看到的,数组是正确填充的,所以你可以回应所有的匹配

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

猜你在找的PHP相关文章