📄 gzputs.php3
字号:
<HTML>
<HEAD>
<TITLE>gzputs</TITLE>
</HEAD>
<BODY>
<?
// open file for writing
$myFile = fopen("data.gz","w");
// make sure the open was successful
if(!($myFile))
{
print("file could not be opened");
exit;
}
for($index=0; $index<10; $index++)
{
// write a line to the file
gzputs($myFile, "line $index\n");
}
// close the file
gzclose($myFile);
?>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -