注意:ob_end_flush(): 未能在 中发送 zlib 输出压缩 (1) 的缓冲区
2022-08-30 15:32:15
我在本地主机上没有任何问题。但是当我在服务器上测试我的代码时,每个页面的末尾我都会看到这个通知。
我的代码:
<?php
ob_start();
include 'view.php';
$data = ob_get_contents();
ob_end_clean();
include 'master.php';
ob_end_flush(); // Problem is this line