gzputs.php3

来自「linux操作系统中 php 核心编程所有例程 都是一些很不错的案例」· PHP3 代码 · 共 27 行

PHP3
27
字号
<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 + =
减小字号Ctrl + -
显示快捷键?