<?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 => 'fr',
  ),
  'this' => 
  array (
    0 => 'function.mb-lcfirst.php',
    1 => 'mb_lcfirst',
    2 => 'Rend la premi&egrave;re lettre d\'une cha&icirc;ne en minuscule',
  ),
  'up' => 
  array (
    0 => 'ref.mbstring.php',
    1 => 'Fonctions sur les cha&icirc;nes de caract&egrave;res multioctets',
  ),
  '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' => 'fr',
    '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">Rend la première lettre d&#039;une chaîne en minuscule</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.mb-lcfirst-description">
  <h3 class="title">Description</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">
   Effectue une opération <span class="function"><a href="function.lcfirst.php" class="function">lcfirst()</a></span> multi-octets sûre,
   et renvoie une chaîne avec la première lettre de
   <code class="parameter">string</code> en minuscule.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.mb-lcfirst-parameters">
  <h3 class="title">Liste de paramètres</h3>
  <dl>
   
    <dt><code class="parameter">string</code></dt>
    <dd>
     <span class="simpara">
      La chaîne d&#039;entrée.
     </span>
    </dd>
   
   
    <dt><code class="parameter">encoding</code></dt>
    <dd>
     <p class="para">Le paramètre <code class="parameter">encoding</code>
est l&#039;encodage des caractères. S&#039;il est omis ou <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong>, l&#039;encodage de caractères interne
sera utilisé.</p>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.mb-lcfirst-returnvalues">
  <h3 class="title">Valeurs de retour</h3>
  <p class="simpara">
   Renvoie la chaîne de résultat.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.mb-lcfirst-seealso">
  <h3 class="title">Voir aussi</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.mb-ucfirst.php" class="function" rel="rdfs-seeAlso">mb_ucfirst()</a> - Rend une cha&icirc;ne avec la premi&egrave;re lettre en majuscule</span></li>
   <li><span class="function"><a href="function.lcfirst.php" class="function" rel="rdfs-seeAlso">lcfirst()</a> - Met le premier caract&egrave;re en minuscule</span></li>
  </ul>
 </div>


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