gpt4 book ai didi

PHP DOMDocument 错误处理

转载 作者:IT王子 更新时间:2023-10-28 23:51:32 24 4
gpt4 key购买 nike

在我的应用程序中,我从 url 加载 xml 以解析它。但有时这个网址可能无效。在这种情况下,我需要处理错误。我有以下代码:

$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
}

我知道我可能做错了,但是处理这种异常的正确方法是什么?我不想在我的页面上看到错误消息。

DOMDocument::load() 的手册说:

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.

但是没有关于如何处理的信息。

谢谢。

最佳答案

根据我从 documentation 收集到的信息,处理此方法发出的警告很棘手,因为它们不是由 libxml 扩展生成的,因此无法由 libxml_get_last_error() 处理。您可以使用错误抑制运算符并检查 false...

的返回值
if (@$xdoc->load($url) === false)
// ...handle it

...或注册an error handler which throws an exception on error :

function exception_error_handler($errno, $errstr, $errfile, $errline ) {
throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
}

然后捕获它。

关于PHP DOMDocument 错误处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1759069/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com