萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> PHP將字符串首字母大小寫轉換的實例

PHP將字符串首字母大小寫轉換的實例

小編推薦的這篇文章介紹了PHP將字符串首字母大小寫轉換的實例,非常實用,有興趣的同學可以參考一下

每個單詞的首字母轉換為大寫:ucwords()

 

 代碼如下 復制代碼

<?php

$foo='hello world!';

$foo= ucwords($foo);      // Hello World!

  

$bar='HELLO WORLD!';

$bar= ucwords($bar);      // HELLO WORLD!

$bar= ucwords(strtolower($bar));// Hello World!

?>

 

第一個單詞首字母變大寫:ucfirst()

 

 代碼如下 復制代碼

<?php

$foo='hello world!';

$foo= ucfirst($foo);      // Hello world!

  

$bar='HELLO WORLD!';

$bar= ucfirst($bar);      // HELLO WORLD!

$bar= ucfirst(strtolower($bar));// Hello world!

?>

 

第一個單詞首字母變小寫:lcfirst()

 

 代碼如下 復制代碼

<?php

$foo='HelloWorld';

$foo= lcfirst($foo);      // helloWorld

  

$bar='HELLO WORLD!';

$bar= lcfirst($bar);      // hELLO WORLD!

$bar= lcfirst(strtoupper($bar));// hELLO WORLD!

?>

 

所有 字母變大寫:strtoupper()

所有 字母變小寫:strtolower()

copyright © 萬盛學電腦網 all rights reserved