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

contributors($setup);

?>
<div id="intro.dio" class="preface">
  <h1 class="title">Вступ</h1>
  <p class="para">
   PHP supports the direct io functions as described in the Posix
   Standard (Section 6) for performing I/O functions at a lower
   level than the C-Language stream I/O functions
   (<span class="function"><a href="function.fopen.php" class="function">fopen()</a></span>, <span class="function"><a href="function.fread.php" class="function">fread()</a></span>,..).  The use
   of the DIO functions should be considered only when direct 
   control of a device is needed.  In all other cases, the standard
   <a href="book.filesystem.php" class="link">filesystem</a> functions are more
   than adequate. 
  </p>
 </div><?php manual_footer($setup); ?>