Bzip2 函数
PHP Manual

bzopen

(PHP 4 >= 4.0.4, PHP 5, PHP 7)

bzopen打开 bzip2 压缩文件

说明

resource bzopen ( mixed $file , string $mode )

bzopen() 打开一个 bzip2(.bz2)文件用于读或写。

参数

file

待打开的文件的文件名,或者已经存在的资源流。

mode

支持 'r'(读)和 'w'(写)模式。 其他任何模式都会导致 bzopen() 返回 FALSE

返回值

如果打开失败,bzopen() 会返回 FALSE,否则返回一个指向最新打开文件的指针。

范例

Example #1 bzopen() 范例

<?php

$file 
"/tmp/foo.bz2";
$bz bzopen($file"r") or die("Couldn't open $file for reading");

bzclose($bz);

?>

参见


Bzip2 函数
PHP Manual