<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.mbstring.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ru',
  ),
  'this' => 
  array (
    0 => 'function.mb-get-info.php',
    1 => 'mb_get_info',
    2 => 'Получает внутренние настройки модуля mbstring',
  ),
  'up' => 
  array (
    0 => 'ref.mbstring.php',
    1 => 'Функции для работы с многобайтовыми строками',
  ),
  'prev' => 
  array (
    0 => 'function.mb-eregi-replace.php',
    1 => 'mb_eregi_replace',
  ),
  'next' => 
  array (
    0 => 'function.mb-http-input.php',
    1 => 'mb_http_input',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ru',
    'path' => 'reference/mbstring/functions/mb-get-info.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.mb-get-info" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">mb_get_info</h1>
  <p class="verinfo">(PHP 4 &gt;= 4.2.0, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">mb_get_info</span> &mdash; <span class="dc-title">Получает внутренние настройки модуля mbstring</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.mb-get-info-description">
  <h3 class="title">Описание</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>mb_get_info</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$type</code><span class="initializer"> = &quot;all&quot;</span></span>): <span class="type"><span class="type"><a href="language.types.array.php" class="type array">array</a></span>|<span class="type"><a href="language.types.string.php" class="type string">string</a></span>|<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span>|<span class="type"><a href="language.types.null.php" class="type null">null</a></span></span></div>

  <p class="simpara">
   Функция <span class="function"><strong>mb_get_info()</strong></span> возвращает внутренние параметры настроек модуля mbstring.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.mb-get-info-parameters">
  <h3 class="title">Список параметров</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">type</code></dt>
     <dd>
      <p class="para">
       Если параметр <code class="parameter">type</code> не задали или задали как
       <code class="literal">&quot;all&quot;</code>, возвращается массив (<span class="type"><a href="language.types.array.php" class="type array">array</a></span>), который содержит
       элементы <code class="literal">&quot;internal_encoding&quot;</code>, <code class="literal">&quot;http_input&quot;</code>,
       <code class="literal">&quot;http_output&quot;</code>, <code class="literal">&quot;http_output_conv_mimetypes&quot;</code>,
       <code class="literal">&quot;mail_charset&quot;</code>, <code class="literal">&quot;mail_header_encoding&quot;</code>,
       <code class="literal">&quot;mail_body_encoding&quot;</code>, <code class="literal">&quot;illegal_chars&quot;</code>,
       <code class="literal">&quot;encoding_translation&quot;</code>, <code class="literal">&quot;language&quot;</code>,
       <code class="literal">&quot;detect_order&quot;</code>, <code class="literal">&quot;substitute_character&quot;</code>
       и <code class="literal">&quot;strict_detection&quot;</code>.
      </p>
      <p class="para">
       Если параметр <code class="parameter">type</code> задали как <code class="literal">&quot;internal_encoding&quot;</code>, <code class="literal">&quot;http_input&quot;</code>,
       <code class="literal">&quot;http_output&quot;</code>, <code class="literal">&quot;http_output_conv_mimetypes&quot;</code>,
       <code class="literal">&quot;mail_charset&quot;</code>, <code class="literal">&quot;mail_header_encoding&quot;</code>,
       <code class="literal">&quot;mail_body_encoding&quot;</code>, <code class="literal">&quot;illegal_chars&quot;</code>,
       <code class="literal">&quot;encoding_translation&quot;</code>, <code class="literal">&quot;language&quot;</code>,
       <code class="literal">&quot;detect_order&quot;</code>, <code class="literal">&quot;substitute_character&quot;</code>
       или <code class="literal">&quot;strict_detection&quot;</code>,
       возвращается настройка заданного параметра.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.mb-get-info-returnvalues">
  <h3 class="title">Возвращаемые значения</h3>
  <p class="para">
   Функция возвращает массив (<span class="type"><a href="language.types.array.php" class="type array">array</a></span>) информации о параметрах, если параметр <code class="parameter">type</code>
   не определили, иначе значение заданного параметра <code class="parameter">type</code> или <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>, если возникла ошибка.
  </p>
 </div>


  <div class="refsect1 changelog" id="refsect1-function.mb-get-info-changelog">
  <h3 class="title">Список изменений</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Версия</th>
      <th>Описание</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td>8.0.0</td>
      <td>
       Параметр <code class="parameter">type</code> больше не поддерживает значения <code class="literal">&quot;func_overload&quot;</code>
       и <code class="literal">&quot;func_overload_list&quot;</code>.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 seealso" id="refsect1-function.mb-get-info-seealso">
  <h3 class="title">Смотрите также</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.mb-regex-encoding.php" class="function" rel="rdfs-seeAlso">mb_regex_encoding()</a> - Устанавливает или получает кодировку символов
   для многобайтового регулярного выражения</span></li>
    <li><span class="function"><a href="function.mb-http-output.php" class="function" rel="rdfs-seeAlso">mb_http_output()</a> - Устанавливает или получает кодировку символов HTTP-вывода</span></li>
   </ul>
  </p>
 </div>


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