tags:

views:

2053

answers:

7

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
+1  A: 

embed the text file content between <pre></pre> tags

garyLynch
That probably won't be enough.
Peter Stuifzand
+8  A: 

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

  $string = implode("<br>", $contents);
Peter Stuifzand
well that is the simplest solution thanks
vache
+6  A: 

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.

Gumbo
this works fine too, why not implode tho?
vache
I don’t like going a long way round. But using `implode` in this case would be fine as well.
Gumbo
@vache simplicity, nl2br basicly does the same as impload('<br />', $var) but it requires less arguments and therefor looks cleaner in the code so why not just use it.
Unkwntech
Implode in this case probably performs better. nl2br has no idea how many new lines there are and so probably has to use a string builder to make the output string. Implode can just allocate filesize + length ('<br>')*(count(lines)-1) chars immediately and then copy the data into place.
jmucchiello
A: 

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

truppo
A: 

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.

Sarah Vessels
oops, sorry did not notice that there, thanks
vache
A: 

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);
}
?>
cletus
You don't want the content type in the second and third examples.
John Gietzen
Good pickup, thanks.
cletus
A: 

As several of the other responses mentioned, it greatly depends upon the page in which you're displaying the output.

Raw Text Output

If you're not adding any other content or HTML to the page. Simply change the HTTP Content-Type header to "text/plain"; that is:

header('Content-Type: text/plain');
echo file_get_contents('path/to/file');

As always, HTTP headers must be sent before any content is sent to the browser.

(X)HTML Output

Replacing \n's with <br/> will not fix whitespace truncation issues; that is, the removal of adjacent spaces and/or tabs. The easiest way to get around this, also as previously mentioned, is to use the <pre> tag to enclose the contents of the file. Unfortunately, this is not enough to satisfy XHTML. There are a number of symbols that are invalid in XML unless they are properly escaped, notably including: &, <, and >.

Thankfully, this is also an easy fix using the str_replace method:

$raw = file_get_contents('path/to/file');
echo '<pre>';
echo str_replace($raw, array('>','<','&','%'), array('&gt;','&lt;','&amp;','&#37;'));
echo '</pre>';
Mike Koval