1、獲取字串長度 strlen()
2、刪除空白字串 trim(), ltrim(), rtrim() 分別用來刪除 字串首尾,字串開頭,字串結尾的空白符。
trim(),ltrim(),rtrim()函式預設刪除的字元:
符號ascii碼
意義「 」
0x20
空格「\t」
0x09
製表符"\n"
0x0a
換行符"\r"
0x0d
回車符"\0"
0x00
空字元"\x0b"
0x0b
縱向製表符
//examgle
$title = " programming php \n";
$str1 = ltrim($title);//promgromming php \n
$str2 = rtrim($title);// programming php
$str3 = trim($title);//programming php
//可以使用帶引數的trim()函式來刪除開頭或結尾的空白而不刪除製表符
$record = " fred\tflintstone\t35\twilma\t \n";
$record = trim($record, " \r\n\0\x0b");
//此時record 值為:"fred\tflintstone\t35\twilma\t"
改變大小寫
strtolower(),strtoupper() 操作整個字串
ucfirst()僅操作字串的第乙個字元,ucwords()操作字串中每個單詞的第乙個字元
//example
$str1 = "fred fintstone";
$str2 = "barney rubble" ;
print(strtolower($str1));
print(strtoupper($str1));
print(ucfirst($str2));
print(ucwords($str2));
//輸出
fred fintstone
fred fintstone
barney rubble
barney rubble
PHP常用字串函式
1 echo,print,print r,printf,sprintf 前兩個函式是輸出字串.字串中如果有變數名則被替換成其值.php程式設計師站 print r也是輸出函式,不同的是他可以輸入複雜結構的資料,比如陣列,物件 後兩個函式類似於c的同名函式.2 strchr,strlen,strtok...
php常用字串函式
一些簡單實用的函式 strlen string 獲取字串的長度。trim str,char 移除字串兩側的空白字元或其他預定義字元。ltrim str,char 移除字串左側的空白字元或其他預定義字元。rtrim str,char 移除字串右側的空白字元或其他預定義字元。strtolower str...
PHP常用字串函式
函式名 描述例項 輸入輸出 去空格或其他字元 trim 刪除字串兩端的空格或其他預定義字元 str r nhello world r n echo trim str 目標字串 清除後的字串 rtrim chop 刪除字串右邊的空格或其他預定義字元 str hello world r n echo r...