Home  >  Article  >  Backend Development  >  PHP processing TXT files (open/close/check/read)_PHP tutorial

PHP processing TXT files (open/close/check/read)_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 15:10:021020browse

PHP file processing: http://www.jb51.net/w3school/php/php_file.htm

Copy code The code is as follows:

$filename=dirname(__FILE__)."/readfrom.txt";
$ofilename=dirname(__FILE__)."/writeto.txt";

if (!file_exists($filename)){
echo $filename." not found!";
exit;
}

$fp=fopen($filename,"r");
$fo = fopen($ofilename,"w");

while(!feof($fp)){

$record=fgets($fp);

if($record!=NULL){
$record_arr=explode("t", $record);

fwrite($fo,$record,strlen($col));
}


}
fclose($fo);
fclose($fp);

?>

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327172.htmlTechArticlephp file processing: http://www.jb51.net/w3school/php/php_file.htm Copy code code As follows: ?php $filename=dirname(__FILE__)."/readfrom.txt"; $ofilename=dirname(__FILE__)."/writeto.t...
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