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

contributors($setup);

?>
<div id="intro.inotify" class="preface">
  <h1 class="title">Вступ</h1>
  <p class="para">
   The inotify extension exposes the inotify functions <span class="function"><a href="function.inotify-init.php" class="function">inotify_init()</a></span>,
   <span class="function"><a href="function.inotify-add-watch.php" class="function">inotify_add_watch()</a></span> and <span class="function"><a href="function.inotify-rm-watch.php" class="function">inotify_rm_watch()</a></span>.
  </p>
  <p class="para">
   As the C <span class="function"><a href="function.inotify-init.php" class="function">inotify_init()</a></span> function returns a file descriptor, PHP&#039;s
   <span class="function"><a href="function.inotify-init.php" class="function">inotify_init()</a></span> returns a stream resource, usable with standard
   stream functions, like <span class="function"><a href="function.stream-select.php" class="function">stream_select()</a></span>, <span class="function"><a href="function.stream-set-blocking.php" class="function">stream_set_blocking()</a></span> 
   and <span class="function"><a href="function.fclose.php" class="function">fclose()</a></span>. <span class="function"><a href="function.inotify-read.php" class="function">inotify_read()</a></span> replaces the C way of reading inotify
   events.
  </p>
 </div><?php manual_footer($setup); ?>