PHP zip_open() 函数
PHP zip_open() 函数
完整的 PHP Zip File 参考手册定义和用法
zip_open() 函数打开 zip 档案以供读取。
如果成功,该函数则返回 zip 文件资源。如果失败,则返回 FALSE。
语法
zip_open(filename)
参数 | 描述 |
---|---|
filename | 必需。规定要打开的 zip 文件的文件名和路径。 |
提示和注释
提示:打开的 zip 文件资源可被 zip_read() 和 zip_close() 函数使用。
实例
<?php
$zip = zip_open("test.zip");
zip_read($zip);
// some code
zip_close($zip);
?>
$zip = zip_open("test.zip");
zip_read($zip);
// some code
zip_close($zip);
?>
完整的 PHP Zip File 参考手册
相关文章
- PHP 简介
- PHP EOF(heredoc) 使用说明
- PHP 魔术常量
- PHP 过滤器
- PHP JSON
- PHP array_diff_key() 函数
- PHP array_flip() 函数
- PHP array_push() 函数
- PHP array_rand() 函数
- PHP array_reduce() 函数
- PHP array_slice() 函数
- PHP array_udiff_assoc() 函数
- PHP array_udiff_uassoc() 函数
- PHP arsort() 函数
- PHP extract() 函数
- PHP uksort() 函数
- PHP cURL 函数
- PHP 5 Filesystem 函数
- PHP Filter 函数
- PHP 杂项 函数