首页 > 开发 > PHP > 正文

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

2024-05-04 23:07:38
字体:
来源:转载
供稿:网友
php文件处理:

复制代码 代码如下:


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

?>

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表