Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
If without saving to disk:
$password = 'ChangeMe';
$zipFile = \PhpZip\ZipOutputFile::create();
$zipFile->addFromString('filename.txt', 'Data content');
// установите пароль для нужного алгоритма шифрования
$zipFile->setPassword($password); // для WinZip AES шифрования
// или
$zipFile->setPassword($password, \PhpZip\Model\ZipEntry::ENCRYPTION_METHOD_TRADITIONAL); // для традиционного шифрования
$zipFile->outputAsAttachment('archive.zip');
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question