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
This commit is contained in:
Jakub Vrana 2007-11-21 16:54:29 +00:00
parent 637b01bb16
commit 2f2f95ba7c

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.24 $ -->
<!-- $Revision: 1.25 $ -->
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.ob-start">
<refnamediv>
<refname>ob_start</refname>
@ -107,8 +107,8 @@
<listitem>
<para>
If the optional parameter <parameter>chunk_size</parameter> is passed, the
callback function is called on every first newline after
<parameter>chunk_size</parameter> bytes of output.
buffer will be flushed after any output call which causes the buffer's
length to equal or exceed <parameter>chunk_size</parameter>.
Default value 0 means that the function is called only in the end,
other special value 1 sets <parameter>chunk_size</parameter> to 4096.
</para>