php中字母大小寫轉換函式

來源:互聯網
上載者:User
在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!

?>

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.