PHP 处理TXT文件(打开/关闭/检查/读取)

php文件处理:https://www.jb51.net/w3school/php/php_file.htm

复制代码 代码如下:


<?php
$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);

?>

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/021e010aeacc7ae570b64a970e2a7132.html