日期:2014-05-16  浏览次数:20430 次

如何读取text文件,显示原样格式?
如何读取text文件,显示原样格式?

原样格式: namelist.txt



php 显示格式t:


页面代码:
<?php 
$file_handle = fopen("d:/data/namelist.txt", "r");

while (!feof($file_handle)) {

$line_of_text = fgets($file_handle);
print $line_of_text . "<BR>";

}

fclose($file_handle);
?>
------解决方案--------------------
$file_handle = fopen("d:/data/namelist.txt", "r");
echo '<pre>';
while (!feof($file_handle)) {
  $line_of_text = fgets($file_handle);
  print $line_of_text . "<BR>";
}
echo '</pre>';

fclose($file_handle);