(PHP 4, PHP 5, PHP 7)
ucwords — ���ַ�����ÿ�����ʵ�����ĸת��Ϊ��д
$str
[,
string $delimiters
= " \t\r\n\f\v"
] ) : string
�� str
��ÿ�����ʵ����ַ���������ַ�����ĸ��ת��Ϊ��д��ĸ������������ַ�����
���ﵥ�ʵĶ����ǽ����� delimiters
������Ĭ�ϣ��ո�����Ʊ�������з����س�����ˮƽ���Լ����ߣ�֮������ַ�����
str
�����ַ�����
delimiters
��ѡ�� delimiters
�������˵��ʷָ��ַ���
����ת������ַ�����
�汾 | ˵�� |
---|---|
5.4.32, 5.5.16 |
������ delimiters ������
|
Example #1 ucwords() ����
<?php
$foo = 'hello world!';
$foo = ucwords($foo); // Hello World!
$bar = 'HELLO WORLD!';
$bar = ucwords($bar); // HELLO WORLD!
$bar = ucwords(strtolower($bar)); // Hello World!
?>
Example #2 ucwords() �Զ��� delimiters ������
<?php
$foo = 'hello|world!';
$bar = ucwords($foo); // Hello|world!
$baz = ucwords($foo, "|"); // Hello|World!
?>
Note: �˺����ɰ�ȫ���ڶ����ƶ���