在php中字母大小寫轉換函式包括有:strtolower,strtoupper,ucfirst,ucwords等等函數,本文章來分別給各位介紹這幾個字母大小寫轉換函式使用方法.
1.將字串轉換成小寫
strtolower():該函數將傳入的字串參數所有的字元都轉換成小寫,並以小定形式放回這個字串,代碼如下:
echo strtolower("Hello WORLD!");
2.將字元轉成大寫
strtoupper():該函數的作用同strtolower函數相反,是將傳入的字元參數的字元全部轉換成大寫,並以大寫的形式返回這個字串.用法同strtolowe()一 樣,代碼如下:
<?php
$str = "Mary Had A Little Lamb and She LOVED It So";
$str = strtoupper($str);
echo $str; // 列印 MARY HAD A LITTLE LAMB AND SHE LOVED IT SO
?>
3.將字串首字元轉換成大寫
ucfirst():該函數的作用是將字串的第一個字元改成大寫,該函數返回首字元大寫的字串.用法同strtolowe()一樣,代碼如下:
<?php
$foo = 'hello world!';
$foo = ucwords($foo); // Hello World!
//開原始碼phpfensi.com
$bar = 'HELLO WORLD!';
$bar = ucwords($bar); // HELLO WORLD!
$bar = ucwords(strtolower($bar)); // Hello World!
?>
4.將字串每個單詞的首字元轉換成大寫
ucwords():該函數將傳入的字串的每個單詞的首字元變成大寫.如"hello world",經過該函數處理後,將返回"Hello Word".用法同strtolowe()一樣,代碼如下:
<?php
$foo = 'hello world!';
$foo = ucfirst($foo); // Hello world!
$bar = 'HELLO WORLD!';
$bar = ucfirst($bar); // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>
5.第一個詞首字母小寫lcfirst(),代碼如下:
<?php
$foo = 'HelloWorld';
$foo = lcfirst($foo); // helloWorld
$bar = 'HELLO WORLD!';
$bar = lcfirst($bar); // hELLO WORLD!
$bar = lcfirst(strtoupper($bar)); // hELLO WORLD!
?>