Home > Backend Development > PHP Tutorial > PHP 处理TXT文件(打开/关闭/检查/读取)_PHP

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

WBOY
Release: 2016-06-01 12:07:13
Original
879 people have browsed it

php文件处理:http://www.bitsCN.com/w3school/php/php_file.htm
复制代码 代码如下:
$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);

?>

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template