I'm trying to retrieve the game mode of a server. This is the code:
<p>
<strong>Grand Bazaar</strong>
<span class="bullet">•</span>
Rush •
<img src="src.png">
</p>
I'm trying to find Rush. I tried this script:
foreach($html->find('p .bullet') as $e)
{
$mode = $e->nextSibling ();
}
But the script just skips "Rush" and continues over to the next tag. I'm sure you guys know what you're doing better than me.
Could anyone help me out here?
preg_match. Use it to search between</span>and<img src="src.png">– Norse Apr 28 '12 at 0:44