Php/docs/ziparchive.setpassword

来自菜鸟教程
跳转至:导航、​搜索

ZipArchive::setPassword

(PHP 5 >= 5.6.0, PHP 7, PECL zip >= 1.12.4)

ZipArchive::setPasswordSet the password for the active archive


说明

public ZipArchive::setPassword ( string $password ) : bool

Sets the password for the active archive.


参数

password
The password to be used for the archive.


返回值

成功时返回 true, 或者在失败时返回 false


注释

Note:

As of PHP 7.2.0 and libzip 1.2.0 the password is used to decompress the archive, and is also the default password for ZipArchive::setEncryptionName() and ZipArchive::setEncryptionIndex(). Formerly, this function only set the password to be used to decompress the archive; it did not turn a non-password-protected ZipArchive into a password-protected ZipArchive.

参见