gzseek.php3
来自「linux操作系统中 php 核心编程所有例程 都是一些很不错的案例」· PHP3 代码 · 共 25 行
PHP3
25 行
<HTML>
<HEAD>
<TITLE>gzseek</TITLE>
</HEAD>
<BODY>
<?
// open a file
if(!($myFile = gzopen("data.gz", "r")))
{
print("file could not be opened");
exit;
}
// jump 32 bytes into the file
gzseek($myFile, 32);
$myLine = gzgets($myFile, 255);
print($myLine);
// dump the rest of the file
gzpassthru($myFile);
?>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?