Heim >Backend-Entwicklung >PHP-Tutorial >PHP 处理TXT文件(打开/关闭/检查/读取)_PHP教程

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

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-21 15:10:021089Durchsuche

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." 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);

?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/327172.htmlTechArticlephp文件处理:http://www.jb51.net/w3school/php/php_file.htm 复制代码 代码如下: ?php $filename=dirname(__FILE__)."/readfrom.txt"; $ofilename=dirname(__FILE__)."/writeto.t...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn