Skip to content

Instantly share code, notes, and snippets.

@Timbus
Created February 25, 2014 12:43
Show Gist options
  • Save Timbus/9208125 to your computer and use it in GitHub Desktop.
Save Timbus/9208125 to your computer and use it in GitHub Desktop.
<?
$doc = new DOMDocument;
$doc->loadHTML(file_get_contents("http://radio.7chan.org:8000/status.xsl"));
$xp = new DOMXpath($doc);
$nl = $xp->query("//div[@class='streamheader'][table[1]//h3 = 'Mount Point /radio']/following-sibling::table//tr[td = 'Content Type:']/td[@class='streamdata']/text()");
echo $nl->item(0)->textContent;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment