php文件处理:http://www.phpstudy.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);
?>
本文地址:https://www.stayed.cn/item/12471
转载请注明出处。
本站部分内容来源于网络,如侵犯到您的权益,请 联系我