(No version information available, might be only in CVS)
lcfirst — 文字列の最初の文字を小文字にする
str の最初の文字がアルファベットであれば、 それを小文字にします。
「アルファベット」かどうかというのは現在のロケールにより決定されます。 たとえば、デフォルトの "C" ロケールでは、a ウムラウト (ä) は変換されません。
入力文字列。
変換後の文字列を返します。
例1 lcfirst() の例
<?php
$foo = 'HelloWorld';
$foo = lcfirst($foo); // helloWorld
$bar = 'HELLO WORLD!';
$bar = lcfirst($bar); // hELLO WORLD!
$bar = lcfirst(strtoupper($bar)); // hELLO WORLD!
?>