版权声明:本文为博主原创文章,如需转载请与博主联系。 https://blog.csdn.net/MShow006/article/details/84632851// 获取渲染后的视图内容 $string = view('index', compact('data'))->__toString(); // 使用PHP内置方法 file_put_contents()生成静态页面 file_put_contents("index.html", $string); 生成的文件路径为 public/index.html