こんにちは、パスワードで保護された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);
しかし、それは機能していません。