.gzread
(PHP3 , PHP4)
gzread ---&">nbsp; 读取指定长度字符串
语法 : 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( )
时间: 2024-09-22 13:50:28