我在本地主机中使用Laravel 5.4
时,后台脚本工作得很好,但是当我将脚本上传到服务器并尝试运行它时。它不起作用。
下面是脚本
<?php
public function test1(Request $request) {
ob_start();
ignore_user_abort(true);
echo json_encode([]);
header("Connection: close");
header("Content-Length:" . (string) ob_get_length());
ob_flush();
ob_end_clean();
ob_implicit_flush(true);
ob_end_flush();
for($i=0;$i<1000000;$i++){
Log::info($i);
}
} ?>
我在本地PC上使用WINDOWS OS, XAMP
在服务器Linux
上