實例
把"hello" 的首字符轉換成大寫:
<?php echo ucfirst("hello world!"); ?>
定義和用法
ucfirst() 函數將字串中的首字符轉換為大寫。
相關函數:
lcfirst() - 把字串中的首字轉換成小寫
ucwords() - 把字串中每個字的首字轉換成大寫
strtoupper() - 把字串轉換為大寫
strtolower( ) - 把字串轉換成小寫
語法
ucfirst(string)
參數 | #描述 |
#string | 必要。規定要轉換的字串。 |
技術細節 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title> ucfirst.php </title> <meta charset="UTF-8"> <meta name="Author" content=""> <meta name="Keywords" content=""> <meta name="Description" content=""> </head> <body> <?php //原来首字符小写 $foo = 'hello world!'; $foo2 = ucfirst($foo); //输出 Hello world! echo $foo . "<br>"; echo $foo2 . "<br>"; //首字符大写,则不改变 $bar = 'HELLO WORLD!'; $bar = ucfirst($bar); //输出 HELLO WORLD! echo $bar . "<br>"; //将所有字符变成小写后,再将首字符编程大写 $bar = ucfirst(strtolower($bar)); //输出 Hello world! echo $bar . "<br>"; ?> </body> </html> hello world! Hello world! HELLO WORLD! Hello world!
以上是php把字串中的首字元轉換為大寫的函數ucfirst()的詳細內容。更多資訊請關注PHP中文網其他相關文章!