当前位置:首页 > PHP教程 > PHP高级教程

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

php文件处理:http://www.jb51.net/硕编程/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);

?>


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!