PHP 文字檔讀取+字串替換
PHP 文字檔讀取+字串替換
<?php //PHP 文字檔讀取+字串替換 //http://kris-14.blogspot.com/2009/12/php-txt.html $file = fopen("list.txt", "r"); //輸出文本中所有的行,直到文件結束為止。 while(! feof($file)) { echo str_replace( " " , " ",fgets($file)). "<br />";//當讀出文件一行後,就在後面加上 <br> 讓html知道要換行 } fclose($file); ?>