addslashes() 使用反斜線引用字串
htmlentities() 函式把字元轉換為 html 實體
htmlspecialchars() 函式把預定義的字元轉換為 html 實體
nl2br() 在字串所有新行之前插入 html 換行標記
sprintf(fo
rmat
, args) 函式把格式化的字串寫入變數中
str_replace( se
arch
, replace, $str) 函式以其他字元替換字串中的一些字元(區分大小寫)
strpos(st
r,find) 查詢字串首次出現的位置
trim() 去除字串首尾處的空白字元(或者其他字元)
(函式)複製部分字串
複製部分字串 將乙個字串中從第m個字元開始的全部字元複製成為另乙個字串。函式介面定義 void strcopy char str1,char str2,int m 其中 str1 str2 m都是使用者傳入的引數。函式在指標str1所指的字串中從第m個字元開始的全部字元複製到指標str2所指向陣列中...
C 字串函式 部分
方 法 作 用 compare 比較字串的內容,考慮文化背景 場所 確定某些字元是否相等 compareordinal 與compare一樣,但不考慮文化背景 format 格式化包含各種值的字串和如何格式化每個值的說明符 indexof 定位字串中第一次出現某個給定子字串或字元的位置 indexo...
字串常用函式
1.查詢字串位置的函式 不適合用於漢子查詢 strpos str,find,int 查詢find在str中第一次出現的位置。對大小寫敏感 從int位置開始往後查詢。如果沒有找到返回flase strrpos str,find,int 查詢find在str中最後一次出現的位置。對大小敏感 從int位置...