沃梦达 / 编程问答 / php问题 / 正文

如何从HTML获取位于所有<span&>标记之间的数组中的文本?

How to get text in array between all lt;spangt; tag from HTML?(如何从HTML获取位于所有lt;span标记之间的数组中的文本?)

本文介绍了如何从HTML获取位于所有<span&>标记之间的数组中的文本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我要从HTML获取所有<span> </span>标记之间的数组中的文本,我尝试过此代码,但它只返回一次:

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标记,但我希望以php数组的形式获取HTML中每个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', $row['tbl_highlighted_icon_content'], $matches);

var_dump($matches);

正如您现在看到的,array已正确填充,因此您可以echo所有匹配项

这篇关于如何从HTML获取位于所有&lt;span&>标记之间的数组中的文本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:如何从HTML获取位于所有&lt;span&>标记之间的数组中的文本?

基础教程推荐