什么会导致取消链接返回"资源暂时不可用"?



我想创建一个.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软件包。

任何见解都将不胜感激!谢谢。

S3持有资源,因此我们必须强行清除GC(垃圾收集器)。

在删除该文件之前,请执行gc_collect_cycles()

相关内容

  • 没有找到相关文章

最新更新