当前位置: 代码迷 >> PHP >> 怎么读取text文件,显示原样格式
  详细解决方案

怎么读取text文件,显示原样格式

热度:103   发布时间:2016-04-28 19:52:05.0
如何读取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);
  相关解决方案