PHP:如何读取像Notepad ++这样的文本文件

时间:2016-03-28 10:21:43

标签: php text notepad++

我有一个包含文本行的文本文件:

enter image description here

当我在Notepad ++中打开它时,它是对齐的,列用空格分隔:

enter image description here


有没有办法通过我的PHP代码来回显这个,以提供像Notepad ++这样的输出?

我使用了以下代码

 <?php

 header('Content-Type: text/html; charset=UTF-8');

 echo  file_get_contents("MAGFLE_Greenbnk_Caraga.txt");

 ?> 

输出:

enter image description here


我是否需要在代码中声明ANSII / UTF8编码/解码?

非常感谢您的帮助

1 个答案:

答案 0 :(得分:0)

$handle = @fopen("myfile.txt", "r");
if($handle) 
{
    while ( ($buffer = fgets($handle, 4096) ) !== false ) 
{
    echo $buffer."\r\n";
}
    @fclose($handle);

}