我正在尝试检查服务器上是否存在图像文件。我正在使用其他服务器获取图像路径。
请检查我尝试过的以下代码,
$urlCheck = getimagesize($resultUF['destination']);
if (!is_array($urlCheck)) {
$resultUF['destination'] = NULL;
}
但是,它显示以下警告
Warning: getimagesize(http://www.example.com/example.jpg) [function.getimagesize]: failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in
有什么办法吗?
谢谢