Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have found the following two commands to respecively create and open password protected zip files. I was however wondering if it's possible to do this in pure PHP

echo system('zip -P password file.zip file.txt');  
echo shell_exec('unzip -P password file.zip');
share|improve this question
I assume you already know about PHP's Zip extensions us3.php.net/manual/en/book.zip.php, but I don't think it supports password protected archives. – Michael Berkowski Oct 10 '11 at 12:50

2 Answers

up vote 2 down vote accepted

You can create simple file zip using some libraries (as PclZip) but you can't create zip with the password.

share|improve this answer
Can PclZip open password protected ones? – hakre Oct 10 '11 at 12:54
@hakre First of all thanks for edit my answer. Anyway, as I know, it can't do. – Aurelio De Rosa Oct 10 '11 at 12:58

No, PHP's ZIP library has no support for passwords. You might look for another ZIP library that supports it and has PHP language bindings.

I don't know any from the top of my head that supports it for creating and opening.

share|improve this answer
Do you know of any libraries that either open or create? – Adrien Hingert Oct 10 '11 at 14:29
Well same for or. You might be able to search for one in the internet, I mean you specifically know what you're looking for. You can leave that as an answer later and accept it. – hakre Oct 10 '11 at 14:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.