Voglio prendere il testo in ordine tra tutti i <span> </span>
tag da HTML, ho provato con questo codice, ma restituisce una sola occorrenza:Come ottenere il testo in serie tra tutti i tag <span> da HTML?
preg_match('/<span>(.+?)<\/span>/is', $row['tbl_highlighted_icon_content'], $matches);
echo $matches[1];
mio 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,
Il mio codice restituisce solo una occorrenza del tag span, ma voglio ottenere tutto il testo da ogni tag span in HTML sotto forma di un array php.
[Analisi dell'HTML con regex?] (Http://stackoverflow.com/a/1732454/1493698) – Antony
Ho una domanda simile qui http://stackoverflow.com/q/34569269/5477982 –