<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/outcontrol.setup.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'outcontrol.configuration.php',
    1 => 'Configurazione di Runtime',
    2 => 'Configurazione di Runtime',
  ),
  'up' => 
  array (
    0 => 'outcontrol.setup.php',
    1 => 'Installazione/Configurazione',
  ),
  'prev' => 
  array (
    0 => 'outcontrol.setup.php',
    1 => 'Installazione/Configurazione',
  ),
  'next' => 
  array (
    0 => 'outcontrol.constants.php',
    1 => 'Costanti predefinite',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/outcontrol/ini.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="outcontrol.configuration" class="section">
 <h2 class="title">Configurazione di Runtime</h2>
 <p class="simpara">
Il comportamento di queste funzioni è influenzato dalle impostazioni di <var class="filename">php.ini</var>.
</p>
 <p class="para">
  <table class="doctable table">
   <caption><strong>Output Control configuration options</strong></caption>
   
    <thead>
     <tr>
      <th>Nome</th>
      <th>Default</th>
      <th>Modificabile</th>
      <th>Storico dei cambiamenti</th>
     </tr>

    </thead>

    <tbody class="tbody">
    <tr>
     <td><a href="outcontrol.configuration.php#ini.output-buffering" class="link">output_buffering</a></td>
     <td><code class="literal">&quot;0&quot;</code></td>
     <td><strong><code><a href="info.constants.php#constant.ini-perdir">INI_PERDIR</a></code></strong></td>
     <td class="empty">&nbsp;</td>
    </tr>

    <tr>
     <td><a href="outcontrol.configuration.php#ini.output-handler" class="link">output_handler</a></td>
     <td><strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></td>
     <td><strong><code><a href="info.constants.php#constant.ini-perdir">INI_PERDIR</a></code></strong></td>
     <td class="empty">&nbsp;</td>
    </tr>

    <tr>
     <td><a href="outcontrol.configuration.php#ini.implicit-flush" class="link">implicit_flush</a></td>
     <td><code class="literal">&quot;0&quot;</code></td>
     <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
     <td class="empty">&nbsp;</td>
    </tr>

    <tr>
     <td><a href="outcontrol.configuration.php#ini.url-rewriter.tags" class="link">url_rewriter.tags</a></td>
     <td><code class="literal">&quot;form=&quot;</code></td>
     <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
     <td>
      As of PHP 7.1.0, this INI setting only affects
      <span class="function"><a href="function.output-add-rewrite-var.php" class="function">output_add_rewrite_var()</a></span>.
      Prior to PHP 7.1.0, this INI setting enabled transparent session id support
      (see <a href="session.configuration.php#ini.session.trans-sid-tags" class="link">session.trans_sid_tags</a>).
     </td>
    </tr>

    <tr>
     <td><a href="outcontrol.configuration.php#ini.url-rewriter.hosts" class="link">url_rewriter.hosts</a></td>
     <td><code class="literal">$_SERVER[&#039;HTTP_HOST&#039;]</code> is used as default.</td>
     <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
     <td>Available as of PHP 7.1.0</td>
    </tr>

    </tbody>
   
  </table>

   Per maggiori dettagli e definizioni sui 
modi INI_*, vedere <a href="configuration.changes.modes.php" class="xref">Where a configuration setting may be set</a>.
 </p>

 <p class="para">Breve descrizione dei parametri
di configurazione.</p>

 <p class="para">
 <dl>
  
   <dt id="ini.output-buffering">
    <code class="parameter">output_buffering</code>
    <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span>/<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>
   </dt>
   <dd>
    <p class="para">
     Output buffering for all files can be enabled by setting this directive
     to <code class="literal">&quot;On&quot;</code>.
     To limit the size of the buffer, a number/quantity corresponding to the
     maximum numbers of bytes allowed can be used instead of
     <code class="literal">&quot;On&quot;</code> for the value of this directive.
     For example <code class="literal">output_buffering=4096</code>.
     This directive is always Off in PHP-CLI.
    </p>
   </dd>
  

  
   <dt id="ini.output-handler">
    <code class="parameter">output_handler</code>
    <span class="type"><a href="language.types.string.php" class="type string">string</a></span>
   </dt>
   <dd>
    <p class="para">
     The output of scripts can be redirected to a function.
     For example setting <code class="literal">output_handler</code>
     to <span class="function"><a href="function.mb-output-handler.php" class="function">mb_output_handler()</a></span>, character encoding will be
     transparently converted to the specified encoding.
     Setting any output handler automatically turns on output buffering.
    </p>
    <blockquote class="note"><p><strong class="note">Nota</strong>: 
     <p class="para">
      <span class="function"><a href="function.mb-output-handler.php" class="function">mb_output_handler()</a></span> and
      <span class="function"><a href="function.ob-iconv-handler.php" class="function">ob_iconv_handler()</a></span> cannot be used together
      and <span class="function"><a href="function.ob-gzhandler.php" class="function">ob_gzhandler()</a></span> and
      <a href="zlib.configuration.php#ini.zlib.output-compression" class="link">zlib.output_compression</a>
      cannot be used with any of the following:
      <span class="function"><a href="function.mb-output-handler.php" class="function">mb_output_handler()</a></span>,
      <span class="function"><a href="function.ob-gzhandler.php" class="function">ob_gzhandler()</a></span>,
      <a href="zlib.configuration.php#ini.zlib.output-compression" class="link">zlib.output_compression</a>,
      the &#039;URL-Rewriter&#039; handler
      (see <a href="session.configuration.php#ini.session.use-trans-sid" class="link">session.use_trans_sid</a>
      and <span class="function"><a href="function.output-add-rewrite-var.php" class="function">output_add_rewrite_var()</a></span>).
     </p>
    </p></blockquote>
    <blockquote class="note"><p><strong class="note">Nota</strong>: 
     <p class="para">
      Only built-in functions can be used with this directive.
      For user defined functions, use <span class="function"><a href="function.ob-start.php" class="function">ob_start()</a></span>.
     </p>
    </p></blockquote>
   </dd>
  

  
   <dt id="ini.implicit-flush">
    <code class="parameter">implicit_flush</code>
    <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span>
   </dt>
   <dd>
    <p class="para">
     <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> by default. Changing this to <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> tells PHP to tell the
     output layer to flush itself automatically after every output block.
     This is equivalent to calling the PHP function
     <span class="function"><a href="function.flush.php" class="function">flush()</a></span> after each and every call to
     any function producing output (such as
     <span class="function"><a href="function.print.php" class="function">print</a></span> or <span class="function"><a href="function.echo.php" class="function">echo</a></span>)
     and each and every HTML block.
    </p>
    <p class="para">
     When using PHP within an web environment, turning
     this option on has serious performance implications and is generally
     recommended for debugging purposes only. This value defaults to
     <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> when operating under the <code class="literal">CLI SAPI</code>.
    </p>
    <p class="para">
     See also <span class="function"><a href="function.ob-implicit-flush.php" class="function">ob_implicit_flush()</a></span>.
    </p>
   </dd>
  

  
   <dt id="ini.url-rewriter.tags">
    <code class="parameter">url_rewriter.tags</code>
    <span class="type"><a href="language.types.string.php" class="type string">string</a></span>
   </dt>
   <dd>
    <span class="simpara">
     <code class="literal">url_rewriter.tags</code> specifies HTML tags and attributes
     in which URLs are rewritten by <span class="function"><a href="function.output-add-rewrite-var.php" class="function">output_add_rewrite_var()</a></span> values.
     Defaults to <code class="literal">&quot;form=&quot;</code>.
    </span>
    <span class="simpara">
     Adding <code class="literal">&quot;form=&quot;</code> or any <code class="literal">form</code> attribute
     will add a hidden <code class="literal">input</code> element to the <code class="literal">form</code>
     with a name and value attribute for each name-value pair passed to
     <span class="function"><a href="function.output-add-rewrite-var.php" class="function">output_add_rewrite_var()</a></span>.
    </span>
    <div class="caution"><strong class="caution">Attenzione</strong>
     <p class="simpara">
      Adding the same tag more than once to <code class="literal">url_rewriter.tags</code>
      will only use the first occurrence during the URL rewriting process.
     </p>
    </div>
    <blockquote class="note"><p><strong class="note">Nota</strong>: 
     <span class="simpara">
      Prior to PHP 7.1.0, <a href="outcontrol.configuration.php#ini.url-rewriter.tags" class="link">url_rewriter.tags</a>
      was used to specify <a href="session.configuration.php#ini.session.trans-sid-tags" class="link">session.trans_sid_tags</a>.
     </span>
    </p></blockquote>
   </dd>
  

  
   <dt id="ini.url-rewriter.hosts">
    <code class="parameter">url_rewriter.hosts</code>
    <span class="type"><a href="language.types.string.php" class="type string">string</a></span>
   </dt>
   <dd>
    <span class="simpara">
     <code class="literal">url_rewriter.hosts</code> specifies which hosts are
     rewritten to include <span class="function"><a href="function.output-add-rewrite-var.php" class="function">output_add_rewrite_var()</a></span> values.
     Defaults to <code class="literal">$_SERVER[&#039;HTTP_HOST&#039;]</code>.
     Multiple hosts can be specified by a comma separated list
     that does not include spaces.
     For example <code class="literal">&quot;php.net,wiki.php.net,bugs.php.net&quot;</code>.
    </span>
   </dd>
  

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