压缩函数库

gzread

(PHP3 , PHP4)

gzread ---  读取指定长度字符串

语法 : string gzread (int zp, int length)

说明 : 

gzread( )从缩文件指标fp读取length位元组,当length位元组已读取或是到达文件的结尾时,读取都将会停止。

Example :

<?php

    // get contents of a gz-file into a string 

    $filename = "/usr/local/something.txt.gz";

    $zd = gzopen ($filename, "r");

    $contents = gzread ($zd, 10000);

    gzclose ($zd);

?>

参考 : gzwrite( )  gzopen( )  gzgets( )  gzgetss( )  gzfile( )  gzpassthru( )


上一页 首页 下一页