(PHP 4, PHP 5, PHP 7)
ucfirst — ���ַ���������ĸת��Ϊ��д
$str
) : string
�� str
�����ַ���������ַ�����ĸ��ת��Ϊ��д��ĸ������������ַ�����
ע����ĸ�Ķ���ȡ���ڵ�ǰ�����趨�����磬��Ĭ�ϵ� "C" �����ַ� umlaut-a��?�������ᱻת����
str
�����ַ�����
���ؽ���ַ�����
Example #1 ucfirst() ����
<?php
$foo = 'hello world!';
$foo = ucfirst($foo); // Hello world!
$bar = 'HELLO WORLD!';
$bar = ucfirst($bar); // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>