All pastes #2082663 Raw Edit

Miscellany

public text v1 · immutable
#2082663 ·published 2011-09-25 06:17 UTC
rendered paste body
$html = file_get_contents("$url");
$html = tidy_repair_string($html);
//echo "$html";
$doc = new DomDocument();
$doc->loadHTML($html);
$xpath = new DomXPath($doc);
$query = $xpath->query('//title');
foreach ($query as $value) {
	$title = $value->nodeValue;
}