本文章主要講到兩種php 字符串替換函數 str_replace與substr_replace前一種是替換所有haystace中的needle,並返回haystace替換後的結果,而substr_replace替換字符串string中的一部分具體哪能一部分則取決於起始位置和可選參數length的值
最常用str_replace()
函數原型:
mixed str_replace(mixed needle,mixed new_needle,mixed haystace[,int &count])
函數用new_needle替換所有haystace中的needle,並返回haystace替換後的結果.可選的第四個參數count,它包含要執行的替換操作次數.
例:
函數substr_replace()則用來在給定位置中查找和替換字符串中特定的子字符串.原型:
string substr_replace(string string,string replacement,int start,int[length]);
負數時
函數使用字符串replacement替換字符串string中的一部分具體哪能一部分則取決於起始位置和可選參數length的值.
start的值代表要替換字符串位置的開始偏移量.如果它為0或是一個正值,就是一個從字符串開始處計算的偏移量;如果它是一個負值,就是從字