时间:2021-07-01 10:21:17 帮助过:21人阅读
$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.bkjia.com/PHPjc/327172.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/327172.htmlTechArticlephp文件处理:http://www.gxlcms.com/w3school/php/php_file.htm 代码如下:
?php $filename=dirname(__FILE__)."/readfrom.txt"; $ofilename=dirname(__FILE__)."/writeto.t...