php-doc-en/reference/outcontrol/reference.xml
Hannes Magnusson c030e2adf7 Upgrade to DocBook5:
- All id attributes are now xml:id
 - Add docbook namespace to all root elements
 - Replace <ulink /> with <link xlink:href />
 - Minor markup fixes here and there


git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@238160 c90b9560-bf6c-de11-be94-00142212c4b1
2007-06-20 22:25:43 +00:00

119 lines
3.1 KiB
XML

<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.17 $ -->
<!-- Purpose: basic.php -->
<!-- Membership: core -->
<reference xml:id="ref.outcontrol" xmlns="http://docbook.org/ns/docbook">
<title>Output Control Functions</title>
<titleabbrev>Output Control</titleabbrev>
<partintro>
<section xml:id="outcontrol.intro">
&reftitle.intro;
<para>
The Output Control functions allow you to control when output is
sent from the script. This can be useful in several different
situations, especially if you need to send headers to the browser
after your script has began outputting data. The Output Control
functions do not affect headers sent using
<function>header</function> or <function>setcookie</function>,
only functions such as <function>echo</function> and data between
blocks of PHP code.
</para>
<note>
<para>
When upgrading from PHP 4.1.x (and 4.2.x) to 4.3.x due to a bug in
earlier versions you must ensure that
<literal>implict_flush</literal> is <literal>OFF</literal> in
your &php.ini;, otherwise any output with
<function>ob_start</function> will not be hidden from output.
</para>
</note>
</section>
<section xml:id="outcontrol.requirements">
&reftitle.required;
&no.requirement;
</section>
<section xml:id="outcontrol.installation">
&reftitle.install;
&no.install;
</section>
&reference.outcontrol.ini;
<section xml:id="outcontrol.resources">
&reftitle.resources;
&no.resource;
</section>
<section xml:id="outcontrol.constants">
&reftitle.constants;
&no.constants;
</section>
<section xml:id="outcontrol.examples">
&reftitle.examples;
<para>
<example>
<title>Output Control example</title>
<programlisting role="php">
<![CDATA[
<?php
ob_start();
echo "Hello\n";
setcookie("cookiename", "cookiedata");
ob_end_flush();
?>
]]>
</programlisting>
</example>
</para>
<para>
In the above example, the output from <function>echo</function>
would be stored in the output buffer until
<function>ob_end_flush</function> was called. In the mean time,
the call to <function>setcookie</function> successfully stored a
cookie without causing an error. (You can not normally send
headers to the browser after data has already been sent.)
</para>
</section>
<section xml:id="outcontrol.seealso">
&reftitle.seealso;
<para>
See also <function>header</function> and
<function>setcookie</function>.
</para>
</section>
</partintro>
&reference.outcontrol.functions;
</reference>
<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
indent-tabs-mode:nil
sgml-parent-document:nil
sgml-default-dtd-file:"../../../manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
vim600: syn=xml fen fdm=syntax fdl=2 si
vim: et tw=78 syn=sgml
vi: ts=1 sw=1
-->