<?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 => 'de',
  ),
  'this' => 
  array (
    0 => 'function.mb-lcfirst.php',
    1 => 'mb_lcfirst',
    2 => 'Make a string\'s first character lowercase',
  ),
  'up' => 
  array (
    0 => 'ref.mbstring.php',
    1 => 'Multibyte String Funktionen',
  ),
  'prev' => 
  array (
    0 => 'function.mb-language.php',
    1 => 'mb_language',
  ),
  'next' => 
  array (
    0 => 'function.mb-list-encodings.php',
    1 => 'mb_list_encodings',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/mbstring/functions/mb-lcfirst.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.mb-lcfirst" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">mb_lcfirst</h1>
  <p class="verinfo">(PHP 8 &gt;= 8.4.0)</p><p class="refpurpose"><span class="refname">mb_lcfirst</span> &mdash; <span class="dc-title">Make a string&#039;s first character lowercase</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.mb-lcfirst-description">
  <h3 class="title">Beschreibung</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>mb_lcfirst</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$string</code></span>, <span class="methodparam"><span class="type"><span class="type"><a href="language.types.null.php" class="type null">?</a></span><span class="type"><a href="language.types.string.php" class="type string">string</a></span></span> <code class="parameter">$encoding</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></span></span>): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

  <p class="simpara">
   Performs a multi-byte safe <span class="function"><a href="function.lcfirst.php" class="function">lcfirst()</a></span> operation,
   and returns a string with the first character of
   <code class="parameter">string</code> lowercased.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.mb-lcfirst-parameters">
  <h3 class="title">Parameter-Liste</h3>
  <dl>
   
    <dt><code class="parameter">string</code></dt>
    <dd>
     <span class="simpara">
      The input string.
     </span>
    </dd>
   
   
    <dt><code class="parameter">encoding</code></dt>
    <dd>
     <p class="para">Der Parameter <code class="parameter">encoding</code>
legt die Zeichenkodierung fest. Wird er nicht übergeben, so wird die interne
Zeichenkodierung genutzt.</p>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.mb-lcfirst-returnvalues">
  <h3 class="title">Rückgabewerte</h3>
  <p class="simpara">
   Returns the resulting string.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.mb-lcfirst-seealso">
  <h3 class="title">Siehe auch</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.mb-ucfirst.php" class="function" rel="rdfs-seeAlso">mb_ucfirst()</a> - Make a string's first character uppercase</span></li>
   <li><span class="function"><a href="function.lcfirst.php" class="function" rel="rdfs-seeAlso">lcfirst()</a> - Wandelt den ersten Buchstaben eines Strings in einen Kleinbuchstaben um</span></li>
  </ul>
 </div>


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