無料CGI、PHPサイト(確認画面付きメールフォーム・メーリングリスト・メルマガ設置、逆アクセスランキング、画像カウンター等)PHPマニュアル by k-sky

lcfirst

(No version information available, might be only in CVS)

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

説明

string lcfirst ( string $str )

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

「アルファベット」かどうかというのは現在のロケールにより決定されます。 たとえば、デフォルトの "C" ロケールでは、a ウムラウト (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!
?>