我的脚本有问题。当我解压缩使用 tis 脚本
if (file_exists($zipfile))
{
$zip = new ZipArchive;
if ($zip->open($zipfile) === TRUE)
{
if ($zip->extractTo($path) === TRUE)
return 'file extracted';
else
return 'cant extract';
$zip->close();
}
else
{
return 'cant open file 2';
}
}
else
{
return 'zip doesnt exist';
}
我无法使用 ftp 删除提取的文件。文件夹($路径)有 chmode 777 但是当我尝试删除提取的文件使用 ftp 我看到消息权限被拒绝但是如果我将文件上传到文件夹使用 ftp 我可以删除文件