Home >php教程 >PHP源码 >逐行删除文件中的内容

逐行删除文件中的内容

PHP中文网
PHP中文网Original
2016-05-25 17:03:411244browse

php代码

function delline($file)
{
	$fp = fopen($file,"r");
	$tmp = tempnam("./","temp0");
	$tmp_fp = fopen($tmp,"w");
	$i=0;
	while(!feof($fp)){
		$line = fgets($fp);
		if($i!=0){
			fputs($tmp_fp,$line);
		}
		$i++;
	}
	fclose($fp);
	fclose($tmp_fp);
	rename($tmp,$file);
}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn