如何使单词的第一个字母大写?

时间:2015-09-15 10:49:02

标签: php string

我有这个词:

katii

但我希望第一个字符为大写K。我怎么能这样做?

3 个答案:

答案 0 :(得分:0)

使用函数usfirst

  string ucfirst ( string $str )

答案 1 :(得分:0)

您可以按照php.net

的规定使用以下内容
<?php
$foo = 'hello world!';
$foo = ucfirst($foo);             // Hello world!

$bar = 'HELLO WORLD!';
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>

答案 2 :(得分:0)

$upper = strtoupper(substr('katii', 0, 1)); //K

你应该在将来让你的问题更加清晰。