我正在处理文件图片上传,如下面的代码中简要描述的那样(只是从整个代码中取出的部分)
//get the temporary name of the uploaded file
$tmpName=$imgFile['tmp_name'];
if( !empty( $tmpName ) && is_uploaded_file( $tmpName ) ) {
//read the image from temporary uploaded data
$im = @ImageCreateFromJpeg($tmpName);
// resize the image
$im=resize_photo($im);
// create new image path and filename...
// ...
// store the image
ImageJpeg($im, $photodir.$ds.$newname,50);
}
// remove the temporary file ???
unlink($tmpName);
脚本工作正常,只删除临时文件,但我不确定整个过程是否正确。可以/我要删除临时文件吗?这样的图像上传可以安全地工作而不使用“move_uploaded_file”吗?如果没有删除,是否删除了临时数据?
答案 0 :(得分:6)
您正在使用imagejpeg()
存储数据,因此您正在创建一个新文件,暂时没有任何内容。
真正的临时文件($tmpname
)是临时文件,当http请求结束时,PHP将删除它。