如何在 PHP 中禁用输出缓冲
我编写了一个简单的中继脚本,该脚本连接到网络摄像头并从插座读取,并使用打印功能输出此数据。数据是已设置边界的 MJPG 数据。我只是输出读取的数据。
问题是PHP似乎正在缓冲这些数据。当我将相机设置为1 FPS时,进纸将冻结7-8秒,然后快速显示8帧。如果将分辨率设置为大尺寸,相机将以每秒1帧或更少的速度移动。我假设发生了一些缓冲(因为大尺寸会快速填充缓冲区,而小尺寸则不会),我无法弄清楚如何禁用此缓冲。有人知道如何吗?
法典:
ignore_user_abort(false);
$boundary = "myboundary";
//Set this so PHP doesn't timeout during a long stream
set_time_limit(0);
$socketConn = @fsockopen ("192.168.1.6", 1989, $errno, $errstr, 2);
if (!$socketConn)
exit();
stream_set_timeout($socketConn, 10);
fputs ($socketConn, "GET /mjpeg HTTP/1.0\r\n\r\n");
//Setup Header Information
header("Cache-Control: no-cache");
header("Cache-Control: private");
header("Pragma: no-cache");
header("Content-type: multipart/x-mixed-replace; boundary=$boundary");
@ini_set('implicit_flush', 1);
for ($i = 0; $i < ob_get_level(); $i++)
ob_end_flush();
ob_implicit_flush(1);
stream_set_blocking($f2, false);
//Send data to client
while (connection_status() == CONNECTION_NORMAL)
{
$chunk = fread($socketConn, 128);
print $chunk;
}
fclose($socketConn);