<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.mbstring.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'mbstring.constants.php',
    1 => 'Vordefinierte Konstanten',
    2 => 'Vordefinierte Konstanten',
  ),
  'up' => 
  array (
    0 => 'book.mbstring.php',
    1 => 'Multibyte String',
  ),
  'prev' => 
  array (
    0 => 'mbstring.configuration.php',
    1 => 'Laufzeit-Konfiguration',
  ),
  'next' => 
  array (
    0 => 'mbstring.encodings.php',
    1 => 'Summaries of supported encodings',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/mbstring/constants.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="mbstring.constants" class="appendix">
 <h1 class="title">Vordefinierte Konstanten</h1>

 <p class="simpara">Folgende Konstanten werden von dieser
Erweiterung definiert und stehen nur zur Verfügung, wenn die Erweiterung entweder
statisch in PHP kompiliert oder dynamisch zur Laufzeit geladen
wurde.</p>
 <dl>
  
   <dt id="constant.mb-overload-mail">
    <strong><code><a href="mbstring.constants.php#constant.mb-overload-mail">MB_OVERLOAD_MAIL</a></code></strong> 
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Removed as of PHP 8.0.0.
    </span>
   </dd>
  
  
   <dt id="constant.mb-overload-string">
    <strong><code><a href="mbstring.constants.php#constant.mb-overload-string">MB_OVERLOAD_STRING</a></code></strong> 
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Removed as of PHP 8.0.0.
    </span>
   </dd>
  
  
   <dt id="constant.mb-overload-regex">
    <strong><code><a href="mbstring.constants.php#constant.mb-overload-regex">MB_OVERLOAD_REGEX</a></code></strong> 
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Removed as of PHP 8.0.0.
    </span>
   </dd>
  
  
   <dt id="constant.mb-case-upper">
    <strong><code><a href="mbstring.constants.php#constant.mb-case-upper">MB_CASE_UPPER</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Performs a full upper-case folding.
     This may change the length of the string.
     This is the mode used by mb_strtoupper().
    </span>
   </dd>
  
  
   <dt id="constant.mb-case-lower">
    <strong><code><a href="mbstring.constants.php#constant.mb-case-lower">MB_CASE_LOWER</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Performs a full lower-case folding.
     This may change the length of the string.
     This is the mode used by mb_strtolower().
    </span>
   </dd>
  
  
   <dt id="constant.mb-case-title">
    <strong><code><a href="mbstring.constants.php#constant.mb-case-title">MB_CASE_TITLE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Performs a full title-case conversion based on the Cased and CaseIgnorable
     derived Unicode properties.
     In particular this improves handling of quotes and apostrophes.
     This may change the length of the string.
    </span>
   </dd>
  
  
   <dt id="constant.mb-case-fold">
    <strong><code><a href="mbstring.constants.php#constant.mb-case-fold">MB_CASE_FOLD</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Performs a full case fold conversion which removes case distinctions
     present in the string.
     This is used for caseless matching.
     This may change the length of the string.
     Available since PHP 7.3.
    </span>
   </dd>
  
  
   <dt id="constant.mb-case-lower-simple">
    <strong><code><a href="mbstring.constants.php#constant.mb-case-lower-simple">MB_CASE_LOWER_SIMPLE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Performs a simple lower-case fold conversion.
     This does not change the length of the string.
     Available as of PHP 7.3.
    </span>
   </dd>
  
  
   <dt id="constant.mb-case-upper-simple">
    <strong><code><a href="mbstring.constants.php#constant.mb-case-upper-simple">MB_CASE_UPPER_SIMPLE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Performs simple upper-case fold conversion.
     This does not change the length of the string.
     Available as of PHP 7.3.
    </span>
   </dd>
  
  
   <dt id="constant.mb-case-title-simple">
    <strong><code><a href="mbstring.constants.php#constant.mb-case-title-simple">MB_CASE_TITLE_SIMPLE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Performs simple title-case fold conversion.
     This does not change the length of the string.
     Available as of PHP 7.3.
    </span>
   </dd>
  
  
   <dt id="constant.mb-case-fold-simple">
    <strong><code><a href="mbstring.constants.php#constant.mb-case-fold-simple">MB_CASE_FOLD_SIMPLE</a></code></strong>
    (<span class="type"><a href="language.types.integer.php" class="type int">int</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     Performs a simple case fold conversion which removes case distinctions
     present in the string.
     This is used for caseless matching.
     This does not change the length of the string.
     Used by case-insensitive operations internally by the MBString extension.
     Available as of PHP 7.3.
    </span>
   </dd>
  
  
   <dt id="constant.mb-oniguruma-version">
    <strong><code><a href="mbstring.constants.php#constant.mb-oniguruma-version">MB_ONIGURUMA_VERSION</a></code></strong>
    (<span class="type"><a href="language.types.string.php" class="type string">string</a></span>)
   </dt>
   <dd>
    <span class="simpara">
     The Oniguruma version, e.g. <code class="literal">6.9.4</code>.
     Available as of PHP 7.4.
    </span>
   </dd>
  
 </dl>
</div>
<?php manual_footer($setup); ?>