String 関数
PHP Manual

lcfirst

(PHP 5 >= 5.3.0)

lcfirst文字列の最初の文字を小文字にする

説明

string lcfirst ( string $str )

str の最初の文字がアルファベットであれば、 それを小文字にします。

「アルファベット」かどうかというのは現在のロケールにより決定されます。 たとえば、デフォルトの "C" ロケールでは、a ウムラウト (ä) は変換されません。

パラメータ

str

入力文字列。

返り値

変換後の文字列を返します。

例1 lcfirst() の例

<?php
$foo 
'HelloWorld';
$foo lcfirst($foo);             // helloWorld

$bar 'HELLO WORLD!';
$bar lcfirst($bar);             // hELLO WORLD!
$bar lcfirst(strtoupper($bar)); // hELLO WORLD!
?>

参考


String 関数
PHP Manual