<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.outcontrol.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'intro.outcontrol.php',
    1 => 'Вступ',
    2 => 'Вступ',
  ),
  'up' => 
  array (
    0 => 'book.outcontrol.php',
    1 => 'Output Control',
  ),
  'prev' => 
  array (
    0 => 'book.outcontrol.php',
    1 => 'Output Control',
  ),
  'next' => 
  array (
    0 => 'outcontrol.setup.php',
    1 => 'Встановлення/налаштування',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/outcontrol/book.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="intro.outcontrol" class="preface">
  <h1 class="title">Вступ</h1>
  <p class="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 begun outputting data. The Output Control
   functions do not affect headers sent using
   <span class="function"><a href="function.header.php" class="function">header()</a></span> or <span class="function"><a href="function.setcookie.php" class="function">setcookie()</a></span>,
   only functions such as <span class="function"><a href="function.echo.php" class="function">echo</a></span> and data between
   blocks of PHP code.
  </p>
 </div><?php manual_footer($setup); ?>