如何通过保持格式来读取文件内容,如txt或json。
我已经使用了这段代码:
File::get(storage_path('my_file.txt'))
示例如下: 原始文件:
<?php
php_info();
?>
修剪版本:
<?php php_info(); ?>
但是这个静态函数返回修剪函数。 有什么我一直缺少或有任何替代和有效的方式?
谢谢你
答案 0 :(得分:0)
我已经在这里使用本机php获得解决方案代码:
@php
$file = storage_path('file.txt');
$text = file_get_contents($file);
$text = nl2br($text);
echo '<pre>'.$text.'</pre>';
@endphp
希望它会有所帮助