我使用函数crop_compress()来裁剪和压缩图像,然后上传它们
function crop_compress($source_url,$target_file,$qual) {
$image = imagecreatefromjpeg($source_url);
$width = imagesx($image);
$height = imagesy($image);
$thumb_width = $width;
$thumb_height = (9/16)*$width;
.
.
.
$thumb = imagecreatetruecolor( $thumb_width, $thumb_height );
imagejpeg($thumb , $target_file,$qual);
return $target_file;}
$filename= 'crop_compress($_FILES["fileToUpload"]["tmp_name"][$key],$target_fileL,90)'
它工作正常。 现在我想用ftp上传这个图像并使用ftp_put:
ftp_put($connecti,$target_file, $filename, FTP_BINARY);
它也可以正常工作,但它上传了2次我不想要的。 我的目录中有一个图像,另一个是ftp
我的问题是如何避免在我的目录中上传? 我知道ftp_put()和crop_compress()单独上传,但我不知道哪一个应该先出现,如何创建一个tmp_file来源于另一个或其他东西以避免这个问题?!
更多信息:
$target_dirL = "user"; #in the main host
$tempL=explode(".", $_FILES["fileToUpload"]["name"][$key]);
$target_fileL = $target_dir .$username1. '.' . end($tempL);
$target_dir = "user/$username/"; #another host
$temp=explode(".", $_FILES["fileToUpload"]["name"][$key]);
$target_file = $target_dir .$username1. '.' . end($temp);
$connecti = ftp_connect($anotherHost) or die('Couldn\'t connect to ftp server');
答案 0 :(得分:1)
在unlink( $filename );
ftp_put($connecti,$target_file, $filename, FTP_BINARY);
这将在通过FTP上传文件后删除该文件。