Просмотр поста

.
ramzes

Macabre, if ($file && file_exists(' . $file . ')) {
не работает с внешними файлами

if(preg_match('#^(*.)\.(jpe?g|png|gif)$#i', $img)){
$hash = md5($img);
  if(!is_file('../cache/'.$hash)){
     if(copy($img, '../cache/'.$hash)){
$exists = true;
     }else{
$exists = false;
     }
   }else{
$exists = true;
   }
   if($exists==true){

echo'<img src="resize......." />';
  }
}

как то так