嗨,我正在使用以下代码创建受密码保护的 zip 文件
$password = 'pass';
$outfile = 'download.zip';
$infile = 'xml.php';
header("Content-type: application/octet-stream");
header("Content-disposition: attachment; filename=$outfile");
@system("zip -P $password $outfile $infile");
readfile($outfile);
@unlink($outfile);
但它不工作。