//ini_set('display_errors',1);error_reporting(E_ALL);
header("Expires: Sat, 26 Jul 1997 05:00:00 GMT");
$in = '/home/users/szczkamftp/www/www.kamery.szczawnica.pl/foto5000M.jpg';
$in2 = '/home/users/szczkamftp/www/www.kamery.szczawnica.pl/api/data/a1.jpg';
$out = '/home/users/szczkamftp/www/www.kamery.szczawnica.pl/api/data/1.jpg';
//copy($in,$in2);
//$test = getimagesize($in2);
/*
$x = time() - filemtime($in);
echo $x;
echo "
";
echo filemtime($in);
exit;*/
header("Content-type: image/jpeg");
while(true) {
$t = time() - filemtime($in);
if( $t > 3 ) {
copy($in,$out);
break;
}
// if($t >= 5) break;
}
readfile($out);
flush();
exit;
//$f = fopen($out,'r');
//$d= fread($f,99999999);
//echo $d;
//fclose($f);
//exit;
//flush();
//exit;
//sleep(3);
/*
if($test[0] == 1280 and $test[1]==960 and filesize($in2) > 260000) {
copy($in2,$out);
}
if(!file_exists($out)) {
copy($in2,$out);
}
*/