i have code
$e = $html->find('span.item_color_title');
echo $e[3]->innertext;
this code good working give element
<span class="item_color_title">
Minutes Played:
</span>
but i want number after this element
<div class="item_float_left">
<div class="section_title">
ALL TIME STATS
</div>
<span class="item_color_title">
Score:
</span>
518
<br>
<span class="item_color_title">
Minutes Played:
</span>
305
<br>
<span class="item_color_title">
Score per Minute:
</span>
1.7
<br>
<span class="item_color_title">
Rank on Server:
</span>
i need this 305 numbers after span only please help me