In my application I am loading xml from url in order to parse it. But sometimes this url may not be valid. In this case I need to handle errors. I have the following code:
$xdoc = new DOMDocument();
try{
$xdoc->load($url); // This line causes Warning: DOMDocument::load(...)
// [domdocument.load]: failed to open stream:
// HTTP request failed! HTTP/1.1 404 Not Found in ...
} catch (Exception $e) {
$xdoc = null;
}
if($xdoc == null){
// Handle
} else {
// Proceed
}
Ben muhtemelen yanlış yapıyor biliyorum, ama istisnalar bu tür işlemek için doğru yolu nedir? Ben sayfamda hata iletileri görmek istemiyorum.
DOMDocument :: load () için manuel diyor ki:
If an empty string is passed as the filename or an empty file is named, a warning will be generated. This warning is not generated by libxml and cannot be handled using libxml's error handling functions.
Ama nasıl hallederim hakkında bilgi yoktur.
Teşekkürler.