PHP zip_close() 函數(shù)
PHP zip_close() 函數(shù)

定義和用法
The zip_close() 函數(shù)關(guān)閉由 zip_open() 函數(shù)打開的 zip 檔案。
語(yǔ)法
zip_close(zip)
參數(shù) | 描述 |
---|---|
zip | 必需。規(guī)定要關(guān)閉的 zip 資源(由 zip_open() 打開的 zip 文件)。 |
實(shí)例
<?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);
?>

相關(guān)文章
- PHP 安裝
- PHP 包含文件 include 和 require 語(yǔ)句
- PHP Secure E-mails
- PHP JSON
- PHP array() 函數(shù)
- PHP array_combine() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_intersect_assoc() 函數(shù)
- PHP array_intersect_uassoc() 函數(shù)
- PHP array_key_exists() 函數(shù)
- PHP array_keys() 函數(shù)
- PHP array_splice() 函數(shù)
- PHP array_udiff() 函數(shù)
- PHP array_walk_recursive() 函數(shù)
- PHP count() 函數(shù)
- PHP each() 函數(shù)
- PHP next() 函數(shù)
- PHP pos() 函數(shù)
- PHP shuffle() 函數(shù)
- PHP Error 和 Logging 函數(shù)