提问人:guyaloni 提问时间:6/16/2023 最后编辑:guyaloni 更新时间:6/16/2023 访问量:56
将 PHP 脚本输出保留到屏幕上ob_start
Keep PHP script output to screen with ob_start
问:
我有一个脚本,我需要将其输出保存到日志文件中。 到目前为止,我有这个实现:
ob_start();
:
:
$content = ob_get_clean();
Storage::disk('local')->put($logfilePath, $content);
问题是脚本执行时间比较长,我需要能够同时在屏幕上看到输出。
我一直在寻找一种方法来做到这一点,但找不到任何优雅的解决方案。
有什么想法吗?
更新:
我正在使用 Laravel 框架,该过程是一个实例。Command
答: 暂无答案
评论
ob_start(), ob_get_clean()
echo