PHP ファイル処理: http://www.jb51.net/w3school/php/php_file.htm
コードをコピー コードは次のとおりです:
$filename=dirname(__FILE__) ."/readfrom.txt";
$ofilename=dirname(__FILE__)."/writeto.txt";
if(!file_exists($filename)){
echo $filename." が見つかりません!";
}
$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);
?>
http://www.bkjia.com/PHPjc/327172.html
www.bkjia.com
本当
http://www.bkjia.com/PHPjc/327172.html
技術記事 PHP ファイルの処理: http://www.jb51.net/w3school/php/php_file.htm 次のようにコードをコピーします: ?php $filename=dirname(__FILE__)."/readfrom.txt"; ) ."/writeto.t...