字符串學習主要是掌握內置函數。 函數太多,至今沒有記住多少,先簡單的把函數記錄下來,以後再做補充。 1、定義方式: 單引號、雙引號、或者{} {}顯示索引數組方便,雙引號解析變量 2、手動轉意字符串數據 \ 符號來實現 可用addslashes()、addcslashes()函數自定義轉移 3、序列化和反序列化 serialize()、unserialize() 4、字符串整理 trim()、ltrim()、rtrim() 去掉字符串中的空格、換行符(\n,\r)、水平和垂直制表符(\t,\v)以及字符串結束符(\0). 5、格式化字符串 nl2br() wordwrap() strtolower() strtoupper() ucfirst() ucwords() 6、分割 explode() 和 同名 join() 例: explode("@",$email) ; 7、字符串截取 substr(‘目標串',起點,終點) 8、strlen() / mb_strlen() 9、str_word_count() 結合array_count_values() 統計單詞出現次數 10、查找www.2cto.com strstr($string,"關鍵字") ,stristr() ,strrch() strpos() str_repeat() substr_count() 11、處理 str_replace() substr_replace() strrev() htmlspecialchars() ,htmlentitles() 將<,>,&, " 等特殊字符轉換為html實體 strip_tags() 清楚html標簽 strncmp(),strcmp() strok() 解析字符串 strpbrk() strspn(),strcspn() str_replace()