<?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 => 'ja',
  ),
  'this' => 
  array (
    0 => 'function.mb-lcfirst.php',
    1 => 'mb_lcfirst',
    2 => '文字列の最初の文字を小文字にする',
  ),
  'up' => 
  array (
    0 => 'ref.mbstring.php',
    1 => 'マルチバイト文字列 関数',
  ),
  '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' => 'ja',
    '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">文字列の最初の文字を小文字にする</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.mb-lcfirst-description">
  <h3 class="title">説明</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">
   マルチバイト対応の <span class="function"><a href="function.lcfirst.php" class="function">lcfirst()</a></span> 処理を行い、
   <code class="parameter">string</code> の最初の文字を小文字に変換して返します。
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.mb-lcfirst-parameters">
  <h3 class="title">パラメータ</h3>
  <dl>
   
    <dt><code class="parameter">string</code></dt>
    <dd>
     <span class="simpara">
      入力文字列。
     </span>
    </dd>
   
   
    <dt><code class="parameter">encoding</code></dt>
    <dd>
     <p class="para"><code class="parameter">encoding</code>
パラメータには文字エンコーディングを指定します。省略した場合、もしくは <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong> の場合は、
内部文字エンコーディングを使用します。</p>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.mb-lcfirst-returnvalues">
  <h3 class="title">戻り値</h3>
  <p class="simpara">
   変換後の文字列を返します。
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.mb-lcfirst-seealso">
  <h3 class="title">参考</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.mb-ucfirst.php" class="function" rel="rdfs-seeAlso">mb_ucfirst()</a> - 文字列の最初の文字を大文字にする</span></li>
   <li><span class="function"><a href="function.lcfirst.php" class="function" rel="rdfs-seeAlso">lcfirst()</a> - 文字列の最初の文字を小文字にする</span></li>
  </ul>
 </div>


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