mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 17:08:54 +00:00
Moved the flush() and ob_() functions to a new location.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@31491 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
5711991447
commit
d27a06e648
1 changed files with 7 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
|||
<reference id="ref.outcontrol">
|
||||
<title>Output Control functions</title>
|
||||
<title>Output Control Functions</title>
|
||||
<titleabbrev>Output Control</titleabbrev>
|
||||
|
||||
<partintro>
|
||||
|
@ -15,14 +15,14 @@
|
|||
</para>
|
||||
<para>
|
||||
<example>
|
||||
<title><function>Output Control</function> example</title>
|
||||
<title>Output Control example</title>
|
||||
<programlisting role="php">
|
||||
<?php
|
||||
|
||||
ob_start();
|
||||
echo "Hello\n";
|
||||
|
||||
setcookie("cookiename", "cookiedata");
|
||||
setcookie ("cookiename", "cookiedata");
|
||||
|
||||
ob_end_flush();
|
||||
|
||||
|
@ -46,8 +46,8 @@ ob_end_flush();
|
|||
|
||||
<refentry id="function.flush">
|
||||
<refnamediv>
|
||||
<refname>flush</refname> <refpurpose>Flush the output
|
||||
buffer</refpurpose>
|
||||
<refname>flush</refname>
|
||||
<refpurpose>Flush the output buffer</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
|
@ -94,7 +94,7 @@ ob_end_flush();
|
|||
<para>
|
||||
See also <function>ob_get_contents</function>,
|
||||
<function>ob_end_flush</function>,
|
||||
<function>ob_end_clean</function> and
|
||||
<function>ob_end_clean</function>, and
|
||||
<function>ob_implicit_flush</function>
|
||||
</para>
|
||||
</refsect1>
|
||||
|
@ -215,7 +215,7 @@ ob_end_flush();
|
|||
</para>
|
||||
<para>
|
||||
See also <function>flush</function>,
|
||||
<function>ob_start</function> and
|
||||
<function>ob_start</function>, and
|
||||
<function>ob_end_flush</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
|
|
Loading…
Reference in a new issue