PHP bzip2 bzopen() 函数
bzopen() 函数可以打开一个 bzip2 压缩文件。
语法
resource bzopen( mixed file , stringmode )
bzopen()函数可以打开一个bzip2 (.bz2)文件以便读取或写入。
如果打开失败,bzopen()函数可以返回false,否则返回一个指向新打开文件的指针。
示例
<?php
file = "/tmp/foo.bz2";bz = bzopen(file, "r") or die("Couldn't openfile for reading");
bzclose($bz);
?>