linux操作系统中 php 核心编程所有例程 都是一些很不错的案例

源代码在线查看: 7-7.php3

软件大小: 357 K
上传用户: lanyunhan
关键词: linux php 操作系统 核心
下载地址: 免注册下载 普通下载 VIP

相关代码

				
				
				Figure 7-7
				
				
									/* 
					** open file for writing 
					*/
					$myFile = fopen("file7-7.txt","w");
					
					/*
					** make sure the open was successful
					*/
					if(!($myFile))
					{
						print("Error: ");
						print("'file7-7.txt' could not be created\n");
						exit;
					}
				
					 
					// write some lines to the file 
					fputs($myFile, "Save this line for later\n");
					fputs($myFile, "Save this line too\n");
				
					fclose($myFile); // close the file
				
				
					/*
					** open file for reading
					*/
					$myFile = fopen("file7-7.txt","r");
				
					/*
					** make sure the open was successful
					*/
					if(!($myFile))
					{
						print("Error:");
						print("'file7-7.txt' could not be read\n");
						exit;
					}
				
					while(!feof($myFile))
					{
						// read a line from the file 
						$myLine = fgets($myFile, 255);
					
						print("$myLine \n");
					}
				
					fclose($myFile); // close the file
				
				?>
				
							

相关资源