PHP裡面字串函式都有哪些?

2021-07-27 12:11:30 字數 1603 閱讀 6074

1 substr(字串,起始位,長度)擷取字串 ****

2 md5($str)字串加密的。****

3 strtolower($str)轉換成小寫字母

4 strtoupper($str)轉換成大寫。

5 擷取字串;mb_substr($str,起始位置,長度,「字符集」);****

6 ucfirst($str) 段落首字母大寫。

7 ucwords($str) 每個單詞首字母都要大寫。

8 strpos($str,目標字元)求字元在字串中的位置,第一次出現的位置。***

9 strrpos($str,目標字元)最後一次出現的位置

1 str_replace(目標字元,替換字元,$str)在字串中用替換字元替換掉目標字元。****

strlen:求字串長度;

$_post:接收;

$_get:傳送;

array():定義陣列(可多維陣列);

rand — 產生乙個隨機整數

int rand ( [int min, int max] )

count — 計算陣列中的單元數目或物件中的屬性個數

int count(計數函式) ( mixed var [, int mode] );

range –  建立乙個包含指定範圍單元的陣列

array range ( mixed low, mixed high [, number step] )

shuffle — 將陣列打亂

bool shuffle ( array &array )

array_slice — 從陣列中取出一段

array array_slice ( array array, int offset [, int length [, bool preserve_keys]] )

array_splice –  把陣列中的一部分去掉並用其它值取代

array array_splice ( array &input, int offset [, int length [, array replacement]] )

ontinue 在迴圈結構用用來跳過本次迴圈中剩餘的**並在條件求值為真時開始執行下一次迴圈。

break 結束當前 for,foreach,while,do-while 或者 switch 結構的執行。

unset — 釋放給定的變數

1.  字串的分割explode();和合併implode();

2.  比較兩個字串的大小strcmp();

3.  字串的替換str_replace();

4.  刪除字串兩頭空白trim();刪除字串尾部空白rtrim();刪除字串開始部分空白ltrim();

5.  //獲取字串的長度 strlen();

6.  substr();//擷取字串

7.  對字串大小轉換 strtoupper();strtolower();

8.  轉換字串到陣列str_split();

9.  字元加密md5();

ucfirst,ucwords字元大寫

1. strip_tags();過濾掉 html xml php標籤**

11.strrev()對字串倒序。

php裡面常用的陣列函式和字串函式

php裡面的常用陣列函式 arr 1,5,68,15,45,23,78,95,2,6 arr1 1,5,6,2 arrs array 0 array 1,5,68,15,4 1 array 15,45,23,78 2 array 23,78,95,2,6 3 array 5,68,15,45,23 ...

php 字串函式

一 字串基礎函式 ltrim 去除連續空白。trim 截去字串首尾的空格。chop 函式從字串的末端開始刪除空白字元或其他預定義字元。rtrim別名 str hello world n n echo str echo chop str 輸出 hello world hello world htmls...

php字串函式

1 查詢字元位置函式 strpos str,search,int 查詢search在 str中的第一次位置從int開始 stripos str,search,int strrpos str,search,int 查詢search在 str中的最後一次出現的位置從int開始 2 提取子字元函式 雙位元...