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

contributors($setup);

?>
<div id="intro.readline" class="preface">
  <h1 class="title">Вступ</h1>
  <p class="para">
   The readline functions implement an interface
   to the GNU Readline library. These are functions that provide
   editable command lines. An example being the way Bash allows you
   to use the arrow keys to insert characters or scroll through
   command history. Because of the interactive nature of this
   library, it will be of little use for writing Web applications,
   but may be useful when writing scripts used from a
   <a href="features.commandline.php" class="link">command line</a>.
  </p>
  <p class="para">
   As of PHP 7.1.0 this extension is supported on Windows.
  </p>
  <div class="caution"><strong class="caution">Застереження</strong>
   <p class="para">
    The readline extension is not thread-safe! Thus, the usage of it with any
    true thread safe SAPI (like Apache mod_winnt) is strongly discouraged.
   </p>
  </div>
 </div><?php manual_footer($setup); ?>