<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/outcontrol.examples.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'zh',
  ),
  'this' => 
  array (
    0 => 'outcontrol.examples.basic.php',
    1 => '基本用法',
    2 => '基本用法',
  ),
  'up' => 
  array (
    0 => 'outcontrol.examples.php',
    1 => '示例',
  ),
  'prev' => 
  array (
    0 => 'outcontrol.examples.php',
    1 => '示例',
  ),
  'next' => 
  array (
    0 => 'outcontrol.examples.rewrite.php',
    1 => '输出重写用法',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'zh',
    'path' => 'reference/outcontrol/examples.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="outcontrol.examples.basic" class="section">
  <h2 class="title">基本用法</h2>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>示例 #1 输出控制举例</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br />ob_start</span><span style="color: #007700">();<br />echo </span><span style="color: #DD0000">"Hello\n"</span><span style="color: #007700">;<br /><br /></span><span style="color: #0000BB">setcookie</span><span style="color: #007700">(</span><span style="color: #DD0000">"cookiename"</span><span style="color: #007700">, </span><span style="color: #DD0000">"cookiedata"</span><span style="color: #007700">);<br /><br /></span><span style="color: #0000BB">ob_end_flush</span><span style="color: #007700">();<br /><br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

   </div>
  </p>
  <p class="para">
   在上面的例子中，<span class="function"><a href="function.echo.php" class="function">echo</a></span> 函数的输出将一直被保存在输出缓冲区中直到调用
   <span class="function"><a href="function.ob-end-flush.php" class="function">ob_end_flush()</a></span>。同时对 <span class="function"><a href="function.setcookie.php" class="function">setcookie()</a></span>
   的调用也成功存储了 cookie，而不会引起错误。（数据已发送到浏览器后，消息头通常无法发送。）
  </p>
 </div><?php manual_footer($setup); ?>