使用此Get file contents of a domain in another domain in the same server上提供的解决方案我收到domain1.com中存在的文件夹列表。有超过5000个文件夹。每个文件夹都包含具有不同图像的详细文件夹。现在我想检查详细文件夹中的所有图像。下面的代码更新了一些记录,但它在一段时间后给了我500个内部服务器错误。
$url_img = 'http://domain1.com/prod_images/' . $foldername . '/' . 'detail/' . $image_path1;
$url=getimagesize($url_img);
if(!is_array($url))
{
upd_sql = "Update prod_images set image_exist_flag='No' where style='$style1' and image_path = '$image_path1'";
$conn->query($upd_sql);
}else{
$upd_sql = "Update prod_images set image_exist_flag='Yes' where style='$style1' and image_path = '$image_path1'";
$conn->query($upd_sql);
}