Preserve linebreak txt php

前端 未结 2 376
余生分开走
余生分开走 2021-01-03 10:46

How can I read a .txt file from my server, and preserve it\'s linebreaks? Note that the linebreaks aren\'t like this /n or something, they are more

2条回答
  •  囚心锁ツ
    2021-01-03 11:30

    The line breaks are preserved without you needing to do anything. You can easily verify this by running the code from the command line, for example with

    php -r "readfile('text.txt');"
    

    However, in HTML whitespace is collapsed by default. If you want to preserve it use the CSS white-space attribute like this:

提交回复
热议问题