PHP字串函式應用

2021-10-01 02:14:14 字數 899 閱讀 7453

判斷字串是否亂碼( json_encode )

運用		json_encode

($string)==

'false' 來判斷。

如果字串中含有亂碼,json_encode該字串就會返回false

將乙個url中的資料解析成陣列( parse_str 函式)
// 查詢字串

$str

='receipt_no=201908055&payment_receipt_no=201706162&amount=122.00&cid=12&proid=89&created_at=0'

;// 會解析成陣列

parse_str

($destr

,$receiptdate);

var_dump

($receiptdate);

// 結果如下

array

(size=6)

'receipt_no'

=> string '201908055'

(length=16)

'payment_receipt_no'

=> string '201706162'

(length=14)

'amount'

=> string '122.00'

(length=6)

'cid'

=> string '12'

(length=5)

'proid'

=> string '89'

(length=2)

'created_at'

=> string '0'

(length=

1)

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 提取子字元函式 雙位元...

php字串函式

addcslashes 為字串裡面的部分字元新增反斜線轉義字元 addslashes 用指定的方式對字串裡面的字元進行轉義 bin2hex 將二進位制資料轉換成十六進製制表示 chop rtrim 的別名函式 chr 返回乙個字元的ascii碼 chunk split 按一定的字元長度將字串分割成小...