display contents of .txt file using php

2019-05-02 12:53发布

using this code

<?php
foreach (glob("*.txt") as $filename) {   
    $file = $filename;
    $contents = file($file); 
    $string = implode($contents); 
    echo $string;
    echo "<br></br>";
}
?>

i can display the contants of any txt file in the folder the problem is all the formating and so on from the txt file is skipped

the txt file looks like

#nipponsei @ irc.rizon.net presents:

Title: Ah My Goddess Sorezore no Tsubasa Original Soundrack
Street Release Date: July 28, 2006

------------------------------------

Tracklist:

1. Shiawase no Iro On Air Ver
2. Peorth
3. Anata ni Sachiare
4. Trouble Chase
5. Morisato Ka no Nichijou
6. Flying Broom
7. Megami no Pride
8. Panic Station
9. Akuryou Harai
10. Hore Kusuri
11. Majin Urd
12. Hild
13. Eiichi Soudatsusen
14. Goddess Speed
15. Kaze no Deau Basho
16. Ichinan Satte, Mata...
17. Eyecatch B
18. Odayaka na Gogo
19. Heibon na Shiawase
20. Kedarui Habanera
21. Troubadour
22. Awate nai de
23. Ninja Master
24. Shinobi no Okite
25. Skuld no Hatsukoi
26. Kanashimi no Yokan
27. Kousaku Suru Ishi
28. Dai Makai Chou Kourin
29. Subete no Omoi wo Mune ni
30. Invisible Shield
31. Sparkling Battle
32. Sorezore no Tsubasa
33. Yume no Ato ni
34. Bokura no Kiseki On Air Ver

------------------------------------

Someone busted in, kicked me and asked why there was no release
of it. I forgot! I'm forgetting a lot...sorry ;_;

minglong

i the result i get looks like

#nipponsei @ irc.rizon.net presents: Title: Ah My Goddess Sorezore no Tsubasa Original Soundrack Street Release Date: July 28, 2006 ------------------------------------ Tracklist: 1. Shiawase no Iro On Air Ver 2. Peorth 3. Anata ni Sachiare 4. Trouble Chase 5. Morisato Ka no Nichijou 6. Flying Broom 7. Megami no Pride 8. Panic Station 9. Akuryou Harai 10. Hore Kusuri 11. Majin Urd 12. Hild 13. Eiichi Soudatsusen 14. Goddess Speed 15. Kaze no Deau Basho 16. Ichinan Satte, Mata... 17. Eyecatch B 18. Odayaka na Gogo 19. Heibon na Shiawase 20. Kedarui Habanera 21. Troubadour 22. Awate nai de 23. Ninja Master 24. Shinobi no Okite 25. Skuld no Hatsukoi 26. Kanashimi no Yokan 27. Kousaku Suru Ishi 28. Dai Makai Chou Kourin 29. Subete no Omoi wo Mune ni 30. Invisible Shield 31. Sparkling Battle 32. Sorezore no Tsubasa 33. Yume no Ato ni 34. Bokura no Kiseki On Air Ver ------------------------------------ Someone busted in, kicked me and asked why there was no release of it. I forgot! I'm forgetting a lot...sorry ;_; minglong

9条回答
欢心
2楼-- · 2019-05-02 13:18

file() returns an array with the lines of the file.

If you implode those without glue there will be no linebreaks at all.

So, either get the contents unmodified using file_get_contents() (which gives you a string), or glue the implode with newline or

查看更多
甜甜的少女心
3楼-- · 2019-05-02 13:23

Peter Stuifzand had the right idea, passing a second argument to the implode function, so I won't address that. What I will point out is that your own echo "<br></br>"; code does not produce valid HTML. If you're doing HTML and want 2 line breaks, do echo "<br><br>"; and if you're doing XHTML and want 2 line breaks, do echo "<br/><br/>";. Otherwise, if you only want 1 line break, the HTML br tag does not have a closing tag, so </br> is not necessary in either case.

查看更多
干净又极端
4楼-- · 2019-05-02 13:32

You have to add HTML line break elements to the physical line breaks. You could use the nl2br function to do that:

foreach (glob("*.txt") as $filename) {
    echo nl2br(file_get_contents($filename));
    echo "<br></br>";
}

Additionally I would use the file_get_contents function rather than the combination of file and implode.

查看更多
看我几分像从前
5楼-- · 2019-05-02 13:33

If this isn't part of an HTML document, you need to change the content type:

<?php
header("Content-Type: text/plain");
foreach (glob("*.txt") as $filename) { 
  readfile($filename);
}
?>

If it is part of an HTML document, just do this:

<pre>
<?php
foreach (glob("*.txt") as $filename) { 
  readfile($filename);
}
?>
</pre>

Alternatively you can replace newlines with breaks:

<?php
foreach (glob("*.txt") as $filename) { 
  $str = file_get_contents($filename);
  echo preg_replace('!\r?\n!', '<br>', $str);
}
?>
查看更多
Melony?
6楼-- · 2019-05-02 13:35

Or you could just put it into a textarea like this:

<?
$file = 'file.txt';
$contents = file($file); 
$string = implode("",$contents); 
echo '<textarea readonly style="width:100%; height:200px;">';
echo $string;
echo "</textarea><br></br>";
?>

But only if you can and it turns out right.

查看更多
手持菜刀,她持情操
7楼-- · 2019-05-02 13:36

The implode defaults to an empty string. You should call implode something like this:

  $string = implode("<br>", $contents);
查看更多
登录 后发表回答