<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.info.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'function.ini-set.php',
    1 => 'ini_set',
    2 => 'Imposta le opzioni di configurazione',
  ),
  'up' => 
  array (
    0 => 'ref.info.php',
    1 => 'PHP Options/Info Funzioni',
  ),
  'prev' => 
  array (
    0 => 'function.ini-restore.php',
    1 => 'ini_restore',
  ),
  'next' => 
  array (
    0 => 'function.memory-get-peak-usage.php',
    1 => 'memory_get_peak_usage',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'it',
    'path' => 'reference/info/functions/ini-set.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.ini-set" class="refentry">
   <div class="refnamediv">
    <h1 class="refname">ini_set</h1>
    <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">ini_set</span> &mdash; <span class="dc-title">Imposta le opzioni di configurazione</span></p>

   </div>
   <div class="refsect1 unknown-100" id="refsect1-function.ini-set-unknown-100">
    <h3 class="title">Descrizione</h3>
     <div class="methodsynopsis dc-description">
      <span class="methodname"><strong>ini_set</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$varname</code></span>, <span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$newvalue</code></span>): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

    <p class="para rdfs-comment">
     Imposta il valore di una data opzione di configurazione. Se l&#039;operazione riesce
     restituisce il vecchio valore, oppure <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> se fallisce. Le opzioni di configurazione
     manterranno il nuovo valore durante l&#039;esecuzione dello script, e saranno
     ripristinate al termine dello stesso.
    </p>
    <p class="para">
     Non tutte le opzioni disponibili possono essere modificate da 
     <span class="function"><strong>ini_set()</strong></span>. Nell&#039;<a href="ini.list.php" class="link">appendix</a>
     vi è un elenco di tutte le opzioni disponibili.
    </p>
    <p class="para">
     Vedere anche: <span class="function"><a href="function.get-cfg-var.php" class="function">get_cfg_var()</a></span>,
     <span class="function"><a href="function.ini-get.php" class="function">ini_get()</a></span>,
     <span class="function"><a href="function.ini-get-all.php" class="function">ini_get_all()</a></span> e
     <span class="function"><a href="function.ini-restore.php" class="function">ini_restore()</a></span>
    </p>
   </div>

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