PHP 字元轉換大小寫

2021-10-05 17:20:14 字數 604 閱讀 5959

將字串轉化為小寫

$str

="abcdef"

;echo

strtolower

($str);

//輸出【aabcdef】

將字串轉化為大寫

$str

="abcdefd"

;echo

strtoupper

($str);

//輸出【abcdefd】

使字元的第乙個字母小寫

echo

lcfirst

("hello world");

//輸出【hello world】

使字元的第乙個字母大寫

echo

ucfirst

("hello world");

//輸出【hello world】

將字串中的每個單詞的首字母大寫

echo

ucwords

("hello world");

//輸出【hello world】

PHP 大小寫轉換

php 大小寫轉換 1.將字串轉換成小寫 strtolower 該函式將傳入的字串引數所有的字元都轉換成小寫,並以小定形式放回這個字串.例 str i want to fly str strtolower str echo str 輸出結果 i want to fly 2.將字元轉成大寫 strto...

字元大小寫轉換

題目1 寫乙個程式,要求功能 求出用1,2,5這三個數不同個數組合的和為100的組合個數。如 100個1是乙個組合,5個1加19個5是乙個組合 include using namespace std int func int num node string n,string i,char s,int...

php 字串大小寫轉換

mb convert case mb convert case 對字串進行大小寫轉換 mb convert case string str int mode string encoding mb internal encoding 對乙個 string 進行大小寫轉換,轉換模式由 mode 指定。引...