4
我在localhost上沒有任何問題。但是當我在服務器上測試我的代碼時,每一頁結束時我都會看到此通知。注意:ob_end_flush():無法發送zlib輸出壓縮緩衝區(1)
我的代碼:
<?php
ob_start();
include 'view.php';
$data = ob_get_contents();
ob_end_clean();
include 'master.php';
ob_end_flush(); // Problem is this line