一、str_replace(find,replace,string,count) 作用:str_replace() 函式使用一個字串替換字串中的另一些字元。 引數 描述 find 必需。規定要查詢的值。 replace 必需。規定替換 find 中的值的值。 string 必需。規定被搜尋的字串。 count 可選。一個變數,對替換數進行計數。
二、substr_replace(string,replacement,start,length) 作用:substr_replace() 函式把字串的一部分替換為另一個字串。 引數 描述 string 必需。規定要檢查的字串。 replacement 必需。規定要插入的字串。 start 必需。規定在字串的何處開始替換。
三、preg_replace ( pattern , replacement , subject,limit = -1 ,$count ) 作用:執行一個正則表示式的搜尋和替換 引數 描述 pattern 必需。需要搜尋的模式。 replacement 必需。用於替換的字串或陣列。 subject 必需。需要替換的字串或陣列。 limit 替換的次數。-1為無限 count 完成替換的次數,變數 Example #1 使用後向引用緊跟數值原文
一、str_replace(find,replace,string,count) 作用:str_replace() 函式使用一個字串替換字串中的另一些字元。 引數 描述 find 必需。規定要查詢的值。 replace 必需。規定替換 find 中的值的值。 string 必需。規定被搜尋的字串。 count 可選。一個變數,對替換數進行計數。
二、substr_replace(string,replacement,start,length) 作用:substr_replace() 函式把字串的一部分替換為另一個字串。 引數 描述 string 必需。規定要檢查的字串。 replacement 必需。規定要插入的字串。 start 必需。規定在字串的何處開始替換。
三、preg_replace ( pattern , replacement , subject,limit = -1 ,$count ) 作用:執行一個正則表示式的搜尋和替換 引數 描述 pattern 必需。需要搜尋的模式。 replacement 必需。用於替換的字串或陣列。 subject 必需。需要替換的字串或陣列。 limit 替換的次數。-1為無限 count 完成替換的次數,變數 Example #1 使用後向引用緊跟數值原文