ucwords
文字列の各単語の最初の文字を大文字にする
説明
string ucwords(string $string
, string $separators
= " \t\r\n\f\v")
この関数における "単語" とは、
separators
に含まれていない文字からなる文字列です。
separators
のデフォルトはスペース、
フォームフィード、改行、キャリッジリターン、
水平タブ、垂直タブ です。
マルチバイト文字列に対して類似の変換を行うには、
mb_convert_case
を MB_CASE_TITLE
モードで使います。
パラメータ
-
string
-
入力文字列。
-
separators
-
オプションの separators
で、単語の区切り文字を指定します。
例
例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!
?>
例2 ucwords で、区切り文字を指定する例
<?php
$foo = 'hello|world!';
$bar = ucwords($foo); // Hello|world!
$baz = ucwords($foo, "|"); // Hello|World!
?>
例3 ucwords で、追加の区切り文字を指定する例
<?php
$foo = "mike o'hara";
$bar = ucwords($foo); // Mike O'hara
$baz = ucwords($foo, " \t\r\n\f\v'"); // Mike O'Hara
?>
注意
注意: この関数はバイナリデータに対応しています。
参考
- strtoupper
- strtolower
- ucfirst
- mb_convert_case