(PHP 5 >= 5.3.0, PHP 7)
lcfirst — ʹһ���ַ����ĵ�һ���ַ�Сд
$str
) : string
���ص�һ����ĸСд�� str
���������ĸ�Ļ���
��Ҫע�����"��ĸ"���ɵ�ǰ������������ġ����磬��Ĭ�ϵ�"C"�������ն�����ϵ�е�Ԫ������a (?) �����ᱻת����
str
������ַ�����
����ת������ַ�����
Example #1 lcfirst() ���ӣ�
<?php
$foo = 'HelloWorld';
$foo = lcfirst($foo); // helloWorld
$bar = 'HELLO WORLD!';
$bar = lcfirst($bar); // hELLO WORLD!
$bar = lcfirst(strtoupper($bar)); // hELLO WORLD!
?>