From 2f2f95ba7ccdec3ac8f0cdaa68def48dec6dd4e1 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Wed, 21 Nov 2007 16:54:29 +0000 Subject: [PATCH] chunk_size flushes buffer, newline is not needed (bug #42660) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@246628 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/outcontrol/functions/ob-start.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reference/outcontrol/functions/ob-start.xml b/reference/outcontrol/functions/ob-start.xml index e130c09263..b7b204a839 100644 --- a/reference/outcontrol/functions/ob-start.xml +++ b/reference/outcontrol/functions/ob-start.xml @@ -1,5 +1,5 @@ - + ob_start @@ -107,8 +107,8 @@ If the optional parameter chunk_size is passed, the - callback function is called on every first newline after - chunk_size bytes of output. + buffer will be flushed after any output call which causes the buffer's + length to equal or exceed chunk_size. Default value 0 means that the function is called only in the end, other special value 1 sets chunk_size to 4096.