在file_get_contents php中格式化txt

时间:2016-11-02 04:08:48

标签: php html html5 laravel blade

我有这段代码来显示txt文件:

<textarea rows="11" cols="190">
<?php
$file = file_get_contents('./test.txt', FILE_USE_INCLUDE_PATH);
echo $file;
?>
</textarea>

txt文件如下所示: enter image description here

在一个干净的html文件中,它看起来像这样: the format is exactly like the txt file

但是当我使用portoadmin模板将其粘贴到laravel中时,txt格式被破坏,它看起来像这样: the format is broken

这有什么问题?

提前致谢

1 个答案:

答案 0 :(得分:2)

将您的网络字体更改为等宽字体字体,例如this。例如,如果您在内部呈现txt文件:

<div id="container">
</div>

然后确保#container元素使用monospace-type字体。例如:

#container {
    font-family: "Roboto Mono", monospace;
}