I am trying to use CURL to grab an XML file associated with this URL, then i am trying to parse the xml file using DOMxPath.
There are no output errors at this point it is just not displaying anything, i tried to catch some errors but i was unable to figure it out, any direction would be amazing.
<?php
if (!function_exists('curl_init')){
die('Sorry cURL is not installed!');
}
function tideTime() {
$ch = curl_init("http://tidesandcurrents.noaa.gov/noaatidepredictions/NOAATidesFacade.jsp?datatype=XML&Stationid=8721138");
$fp = fopen("8721138.xml", "w");
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
$dom = new DOMDocument();
@$dom->loadHTML($ch);
$domx = new DOMXPath($dom);
$entries = $domx->evaluate("//time");
$arr = array();
foreach ($entries as $entry) {
$tide = $entry->nodeValue;
}
echo $tide;
}
?>
print_r($entries);– Krister Andersson Dec 8 '11 at 15:01@before$dom->loadHTMLto get some messages (or justset_error_handler("var_dump");beforehand if err display was disabled otherwise). Also you can't "catch" errors, just exceptions. And why are you passing the curl handle to it, not the file/content? – mario Dec 8 '11 at 15:03@$dom->loadHTML($ch);be@$dom->loadHTML($fp);? – Pete Mitchell Dec 8 '11 at 15:20