<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.readline.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'function.readline-callback-handler-remove.php',
    1 => 'readline_callback_handler_remove',
    2 => 'Removes a previously installed callback handler and restores terminal settings',
  ),
  'up' => 
  array (
    0 => 'ref.readline.php',
    1 => 'Readline Functions',
  ),
  'prev' => 
  array (
    0 => 'function.readline-callback-handler-install.php',
    1 => 'readline_callback_handler_install',
  ),
  'next' => 
  array (
    0 => 'function.readline-callback-read-char.php',
    1 => 'readline_callback_read_char',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/readline/functions/readline-callback-handler-remove.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.readline-callback-handler-remove" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">readline_callback_handler_remove</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.1.0, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">readline_callback_handler_remove</span> &mdash; <span class="dc-title">Removes a previously installed callback handler and restores terminal settings</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.readline-callback-handler-remove-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>readline_callback_handler_remove</strong></span>(): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="simpara">
   Removes a previously installed callback handler and restores terminal
   settings.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.readline-callback-handler-remove-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">This function has no parameters.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.readline-callback-handler-remove-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="simpara">
   Returns <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> if a previously installed callback handler was removed, or
   <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> if one could not be found.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.readline-callback-handler-remove-examples">
  <h3 class="title">Examples</h3>
  <p class="simpara">
   See <span class="function"><a href="function.readline-callback-handler-install.php" class="function">readline_callback_handler_install()</a></span> for an example
   of how to use the readline callback interface.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.readline-callback-handler-remove-seealso">
  <h3 class="title">See Also</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.readline-callback-handler-install.php" class="function" rel="rdfs-seeAlso">readline_callback_handler_install()</a> - Initializes the readline callback interface and terminal, prints the prompt and returns immediately</span></li>
   <li><span class="function"><a href="function.readline-callback-read-char.php" class="function" rel="rdfs-seeAlso">readline_callback_read_char()</a> - Reads a character and informs the readline callback interface when a line is received</span></li>
  </ul>
 </div>


</div><?php manual_footer($setup); ?>