【发布时间】:2019-03-21 12:05:41
【问题描述】:
我正在尝试使用file_get_contents 函数获取图像,但它给出了错误。为了处理错误,我使用了 try catch 块,但它没有捕获错误并失败。
我的代码:
try {
$url = 'http://wxdex.ocm/pdd.jpg'; //dummy url
$file_content = file_get_contents($url);
}
catch(Exception $e) {
echo 'Error Caught';
}
错误:
Warning: file_get_contents(): php_network_getaddresses: getaddrinfo failed: No such host is known
Warning: file_get_contents(http://wxdex.ocm/pdd.jpg): failed to open stream: php_network_getaddresses: getaddrinfo failed: No such host is known.
注意:: 我可以在远程获取任何其他有效的图片网址。
【问题讨论】:
-
主要是警告而不是错误。
标签: php error-handling