<?php
/**字串所有函式
具體檢視手冊--->字串函式
這個看著眼花,只能是快速過眼的時候使用。
**//*
addcslashes — 以 c 語言風格使用反斜線轉義字串中的字元
addslashes — 使用反斜線引用字串
bin2hex — 將二進位制資料轉換成十六進製制表示
chop — rtrim 的別名
chr — 返回指定的字元
chunk_split — 將字串分割成小塊
convert_cyr_string — 將字元由一種 cyrillic 字元轉換成另一種
convert_uudecode — 解碼乙個 uuencode 編碼的字串
convert_uuencode — 使用 uuencode 編碼乙個字串
count_chars — 返回字串所用字元的資訊
crc32 — 計算乙個字串的 crc32 多項式
crypt — 單向字串雜湊
echo — 輸出乙個或多個字串
explode — 使用乙個字串分割另乙個字串
fprintf — 將格式化後的字串寫入到流
join — 別名 implode
lcfirst — make a string's first character lowercase
levenshtein — calculate levenshtein distance between two strings
localeconv — get numeric formatting information
ltrim — strip whitespace (or other characters) from the beginning of a string
md5_file — 計算指定檔案的 md5 雜湊值
md5 — 計算字串的 md5 雜湊值
metaphone — calculate the metaphone key of a string
money_format — formats a number as a currency string
nl_langinfo — query language and locale information
nl2br — 在字串所有新行之前插入 html 換行標記
number_format — format a number with grouped thousands
ord — 返回字元的 ascii 碼值
parse_str — parses the string into variables
print — 輸出字串
printf — 輸出格式化字串
quoted_printable_decode — convert a quoted-printable string to an 8 bit string
quoted_printable_encode — convert a 8 bit string to a quoted-printable string
quotemeta — quote meta characters
rtrim — 刪除字串末端的空白字元(或者其他字元)
setlocale — set locale information
sha1_file — 計算檔案的 sha1 雜湊值
sha1 — 計算字串的 sha1 雜湊值
similar_text — 計算兩個字串的相似度
soundex — calculate the soundex key of a string
sprintf — return a formatted string
sscanf — parses input from a string according to a format
str_getcsv — 解析 csv 字串為乙個陣列
str_ireplace — str_replace 的忽略大小寫版本
str_pad — 使用另乙個字串填充字串為指定長度
str_repeat — 重複乙個字串
str_replace — 子字串替換
str_rot13 — 對字串執行 rot13 轉換
str_shuffle — 隨機打亂乙個字串
str_split — 將字串轉換為陣列
str_word_count — 返回字串中單詞的使用情況
strcasecmp — 二進位制安全比較字串(不區分大小寫)
strchr — 別名 strstr
strcmp — 二進位制安全字串比較
strcoll — 基於區域設定的字串比較
strcspn — 獲取不匹配遮罩的起始子字串的長度
strip_tags — 從字串中去除 html 和 php 標記
stripcslashes — 反引用乙個使用 addcslashes 轉義的字串
stripos — 查詢字串首次出現的位置(不區分大小寫)
stripslashes — 反引用乙個引用字串
stristr — strstr 函式的忽略大小寫版本
strlen — 獲取字串長度
strnatcasecmp — 使用「自然順序」演算法比較字串(不區分大小寫)
strnatcmp — 使用自然排序演算法比較字串
strncasecmp — 二進位制安全比較字串開頭的若干個字元(不區分大小寫)
strncmp — 二進位制安全比較字串開頭的若干個字元
strpbrk — 在字串中查詢一組字元的任何乙個字元
strpos — 查詢字串首次出現的位置
strrchr — 查詢指定字元在字串中的最後一次出現
strrev — 反轉字串
strripos — 計算指定字串在目標字串中最後一次出現的位置(不區分大小寫)
strrpos — 計算指定字串在目標字串中最後一次出現的位置
strspn — 計算字串中全部字元都存在於指定字元集合中的第一段子串的長度。
strstr — 查詢字串的首次出現
strtok — 標記分割字串
strtolower — 將字串轉化為小寫
strtoupper — 將字串轉化為大寫
strtr — 轉換指定字元
substr_compare — 二進位制安全比較字串(從偏移位置比較指定長度)
substr_count — 計算字串出現的次數
substr_replace — 替換字串的子串
substr — 返回字串的子串
trim — 去除字串首尾處的空白字元(或者其他字元)
ucfirst — 將字串的首字母轉換為大寫
ucwords — 將字串中每個單詞的首字母轉換為大寫
vfprintf — 將格式化字串寫入流
vprintf — 輸出格式化字串
vsprintf — 返回格式化字串
wordwrap — 打斷字串為指定數量的字串
*/?>
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 按一定的字元長度將字串分割成小...