<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.php-user-filter.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'php-user-filter.onclose.php',
    1 => 'php_user_filter::onClose',
    2 => 'Called when closing the filter',
  ),
  'up' => 
  array (
    0 => 'class.php-user-filter.php',
    1 => 'php_user_filter',
  ),
  'prev' => 
  array (
    0 => 'php-user-filter.filter.php',
    1 => 'php_user_filter::filter',
  ),
  'next' => 
  array (
    0 => 'php-user-filter.oncreate.php',
    1 => 'php_user_filter::onCreate',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/stream/php_user_filter/onclose.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="php-user-filter.onclose" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">php_user_filter::onClose</h1>
  <p class="verinfo">(PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">php_user_filter::onClose</span> &mdash; <span class="dc-title">Called when closing the filter</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-php-user-filter.onclose-description">
  <h3 class="title">Description</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>php_user_filter::onClose</strong></span>(): <span class="type"><a href="language.types.void.php" class="type void">void</a></span></div>

  <p class="para rdfs-comment">
   This method is called upon filter shutdown (typically, this is also
   during stream shutdown), and is executed <em>after</em>
   the <code class="literal">flush</code> method is called.  If any resources
   were allocated or initialized during <code class="literal">onCreate()</code>
   this would be the time to destroy or dispose of them.
  </p>

 </div>


 <div class="refsect1 parameters" id="refsect1-php-user-filter.onclose-parameters">
  <h3 class="title">Parameters</h3>
  <p class="para">This function has no parameters.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-php-user-filter.onclose-returnvalues">
  <h3 class="title">Return Values</h3>
  <p class="para">
   Return value is ignored.
  </p>
 </div>



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