尝试在laravel刀片视图中显示保存为.txt文件的数据时遇到问题。 Laravel网站是我的前任制作的,我被分配来添加一些功能。
我尝试过的方法:
对此有任何解决方法或解决方案吗?您如何将laravel路由链接到本地文件?
答案 0 :(得分:1)
您只需将该文件读入变量并将其显示在刀片中即可。
$txtFile = file_get_contents("test.txt");
或
$myfile = fopen("webdictionary.txt", "r") or die("Unable to open file!");
echo fread($myfile,filesize("webdictionary.txt"));
fclose($myfile);
答案 1 :(得分:0)