Prova cosi':
Codice PHP:
<?php
$content = '<?xml version="1.0" encoding="UTF-8" ?><item>
<display_html><div class="wowitem wowitemlive"><span class="iname"><span class="orangename">Warglaive of Azzinoth</span></span>
Binds when picked up
Unique
Off Hand<span class="wowrttxt">Sword</span>
107 - 199 Damage<span class="wowrttxt">Speed 1.40</span>
(109.3 damage per second)
+21 Agility
+28 Stamina
Classes: Rogue Warrior
Requires Level 70
<span class="itemeffectlink">Equip: [url="http://wow.allakhazam.com/db/spell.html?wspell=15810"]Increases attack power by 44.[/url] </span>
<span class="itemeffectlink">Equip: Improves critical strike rating by 23.</span>
[url="http://wow.allakhazam.com/db/itemset.html?setid=699"]<span class="goldtext">The Twin Blades of Azzinoth</span>[/url]
<span class="akznotice">Item display is courtesy [url="http://wow.allakhazam.com/"]wow.allakhazam.com[/url].</span></div></display_html>
</item>';
preg_match_all('#<display_html>(.*?)</display_html>#', $content, $marches);
print('<pre>');
print_r($marches);
print('</pre>');
?>