我有一个软件可以每分钟将jpeg上传到 FTP 帐户。
在PHP中,我在crontab中制作了一些PHP代码,它采用最后的JPEG文件并执行图形处理。这很好。
$all_files = scandir("./dir/dir",1);
$last_files = $all_files[0]; //take last jpeg
..etc..
问题是有时crontab中的PHP代码会获取仍在通过FTP写入的文件(因此它不完整)并生成此错误:
[01-Jun-2016 15:30:05 Europe/Rome] PHP Warning: imagecreatefromjpeg(): gd-jpeg, libjpeg: recoverable error: Premature end of JPEG file in /home/asdasd/public_html/www.asdasdasdasd.com/asd/asd/cron.php on line 15
[01-Jun-2016 15:30:05 Europe/Rome] PHP Warning: imagecreatefromjpeg(): './dir/dir/153000.jpg' is not a valid JPEG file in /home/asdasd/public_html/www.asdasdasdasd.com/asd/asd/cron.php on line 15
[01-Jun-2016 15:30:05 Europe/Rome] PHP Warning: imagecopyresampled() expects parameter 2 to be resource, boolean given in /home/asdasd/public_html/www.asdasdasdasd.com/asd/asd/cron.php on line 17
如何添加scandir检查以捕获最后一个完整文件但未写入?
答案 0 :(得分:3)
您可以在处理之前检查JPEG文件是否有效(cron.php):
if(exif_imagetype($filepath) != IMAGETYPE_JPEG){
// Exit the script
exit;
}
// Your image processing code goes here...