<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/iconv.setup.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'zh',
  ),
  'this' => 
  array (
    0 => 'iconv.configuration.php',
    1 => '运行时配置',
    2 => '运行时配置',
  ),
  'up' => 
  array (
    0 => 'iconv.setup.php',
    1 => '安装/配置',
  ),
  'prev' => 
  array (
    0 => 'iconv.installation.php',
    1 => '安装',
  ),
  'next' => 
  array (
    0 => 'iconv.constants.php',
    1 => '预定义常量',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'zh',
    'path' => 'reference/iconv/ini.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="iconv.configuration" class="section">
 <h2 class="title">运行时配置</h2>
 <p class="simpara">
这些函数的行为受 <var class="filename">php.ini</var> 中的设置影响。
</p>
 <p class="para">
 <table class="doctable table">
  <caption><strong>Iconv 配置选项</strong></caption>
  
   <thead>
     <tr>
      <th>名字</th>
      <th>默认</th>
      <th>可修改范围</th>
      <th>更新日志</th>
     </tr>

   </thead>

   <tbody class="tbody">
     <tr>
      <td><a href="iconv.configuration.php#ini.iconv.input-encoding" class="link">iconv.input_encoding</a></td>
      <td>&quot;&quot;</td>
      <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
      <td>在 PHP 5.6.0 中废弃。</td>
     </tr>

     <tr>
      <td><a href="iconv.configuration.php#ini.iconv.output-encoding" class="link">iconv.output_encoding</a></td>
      <td>&quot;&quot;</td>
      <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
      <td>在 PHP 5.6.0 中废弃。</td>
     </tr>

     <tr>
      <td><a href="iconv.configuration.php#ini.iconv.internal-encoding" class="link">iconv.internal_encoding</a></td>
      <td>&quot;&quot;</td>
      <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
      <td>在 PHP 5.6.0 中废弃。</td>
     </tr>

   </tbody>
  
 </table>

 </p>

 <p class="para">这是配置指令的简短说明。</p>

 <div class="warning"><strong class="warning">警告</strong>
  <p class="para">
   有些系统（比如 IBM AIX） 使用 &quot;ISO8859-1&quot; 来代替 &quot;ISO-8859-1&quot;，所以在配置选项和函数参数中必须使用这个值。
  </p>
 </div>

 <p class="para">
  <dl>
   
     <dt id="ini.iconv.input-encoding">
      <code class="parameter">iconv.input_encoding</code>
      <span class="type"><a href="language.types.string.php" class="type string">string</a></span>
     </dt>
     <dd>
      <div class="warning"><strong class="warning">警告</strong><p class="simpara">本特性已自 PHP 5.6.0
起<em>废弃</em>。强烈建议不要使用本特性。</p></div>
      <p class="para">
       PHP 5.6 及以上的用户应该留空并以
       <a href="ini.core.php#ini.input-encoding" class="link">input_encoding</a> 取代。
      </p>
     </dd>
    
    
     <dt id="ini.iconv.output-encoding">
      <code class="parameter">iconv.output_encoding</code>
      <span class="type"><a href="language.types.string.php" class="type string">string</a></span>
     </dt>
     <dd>
      <div class="warning"><strong class="warning">警告</strong><p class="simpara">本特性已自 PHP 5.6.0
起<em>废弃</em>。强烈建议不要使用本特性。</p></div>
      <p class="para">
       PHP 5.6 及以上的用户应该留空并以
       <a href="ini.core.php#ini.output-encoding" class="link">output_encoding</a> 取代。
      </p>
     </dd>
    
    
     <dt id="ini.iconv.internal-encoding">
      <code class="parameter">iconv.internal_encoding</code>
      <span class="type"><a href="language.types.string.php" class="type string">string</a></span>
     </dt>
     <dd>
      <div class="warning"><strong class="warning">警告</strong><p class="simpara">本特性已自 PHP 5.6.0
起<em>废弃</em>。强烈建议不要使用本特性。</p></div>
      <p class="para">
       PHP 5.6 及以上的用户应该留空并以
      <a href="ini.core.php#ini.default-charset" class="link"><code class="parameter">default_charset</code></a> 取代。
      </p>
     </dd>
    

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