我想创建一个.zip存档,将其上传到Amazon S3,然后从服务器中删除创建的.zip。第1步和第2步工作正常,但删除步骤正在返回:
unlink(temp/file.zip): Resource temporarily unavailable
我已尝试unset
所有相关变量和资源,但我仍然收到错误。
以下是代码:
$zipFile = 'temp/file.zip';
// create the zip archive:
$z = new \ZipArchive();
$z->open($zipFile, \ZipArchive::CREATE);
$z->addEmptyDir('testdirectory');
// add a file
$filename = 'fileName.txt';
$content = 'Hello World';
$z->addFromString('testdirectory/' . $filename, $content);
$z->close();
// upload to S3
$s3 = AWS::createClient('s3');
$result = $s3->putObject(array(
'Bucket' => 'my-bucket-name',
'Key' => basename($zipFile),
'SourceFile' => $zipFile
));
// check to see if the file was uploaded
if ($result['@metadata']['statusCode'] == "200") {
$uploaded = true;
}
// delete the temp file
if ($uploaded) {
unset($result);
unset($s3);
unset($z);
if (file_exists($zipFile)) {
unlink($zipFile);
}
}
一些额外的细节:我正在使用Lumen 5.4和aws-sdk-php-laravel包。
非常感谢任何见解!感谢。
答案 0 :(得分:6)
S3持有资源,所以我们必须强行清除gc(垃圾收集器)。
在删除该文件之前,请执行gc_collect_cycles()
。