<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.stream.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'function.stream-wrapper-unregister.php',
    1 => 'stream_wrapper_unregister',
    2 => 'Unregister a URL wrapper',
  ),
  'up' => 
  array (
    0 => 'ref.stream.php',
    1 => 'Stream Funzioni',
  ),
  'prev' => 
  array (
    0 => 'function.stream-wrapper-restore.php',
    1 => 'stream_wrapper_restore',
  ),
  'next' => 
  array (
    0 => 'book.swoole.php',
    1 => 'Swoole',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/stream/functions/stream-wrapper-unregister.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.stream-wrapper-unregister" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">stream_wrapper_unregister</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.1.0, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">stream_wrapper_unregister</span> &mdash; <span class="dc-title">Unregister a URL wrapper</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.stream-wrapper-unregister-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>stream_wrapper_unregister</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$protocol</code></span>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="para rdfs-comment">
   Allows you to disable an already defined stream wrapper. Once the wrapper
   has been disabled you may override it with a user-defined wrapper using
   <span class="function"><a href="function.stream-wrapper-register.php" class="function">stream_wrapper_register()</a></span> or reenable it later on with
   <span class="function"><a href="function.stream-wrapper-restore.php" class="function">stream_wrapper_restore()</a></span>.
  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.stream-wrapper-unregister-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">protocol</code></dt>
     <dd>
      <p class="para">
      </p>
     </dd>
    
   </dl>
  </p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.stream-wrapper-unregister-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="para">
   Restituisce <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> in caso di successo, <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> in caso di fallimento.
  </p>
 </div>

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