PHP 文字檔讀取+字串替換

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( " " , "&nbsp",fgets($file)). "<br />";//當讀出文件一行後,就在後面加上 <br> 讓html知道要換行
	}
	fclose($file);
?>

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *