PHP中str_replace函數使用小結

來源:互聯網
上載者:User

這段時間在看《PHP和MySQL Web開發》一書看到str_replace講解,一段小提示寫到:可以為str_replace的三個都使用數組傳入,但講解比較簡單,於是決定自己的實驗一下該函數在各個參數傳入數組時的執行結果。

函數原型:mixed str_replace(mixed needle,mixed new_needle,mixed haystack[,int &count]);
needle:要被替換的字串,new_needle:替換用的字串,haystack:操作字串,count:替換次數【選擇性參數】

我們重點實驗前三個在使用數組是的執行方式:

在都不使用數組時,該函數直接使用new_needle替換所有的needle並返回替換後的字串。如:str_replace("m","n","my name is jim!")返回ny nane is jin!

1、只對needle使用數組。

樣本:str_replace(array('m','i'),'n',"my name is jim!");返回:ny nane ns jnn!
可以看出,函數順序性的對數組中每個字串進行替換,並返回替換後的字串。

2、只對new_needle使用數組。

樣本:str_replace('m',array('n','z'),"my name is jim!\n")返回:Arrayy naArraye is jiArray!
該替換比較有意思,如果只對第二個參數使用數組則函數將其作為字串Array進行使用,將所有的needle替換為了數組。

3、只對haystack使用數組。

樣本:str_replace("m","n",array("my name is jim!","the game is over!"))該語句執行結果返回一個數組,即分別為傳入的兩個字串替換後的結果。
如果輸出數組內容會看到:ny nane is jin! the gane is over!

4、對needle和new_needle都使用數組。

樣本:str_replace(array("m","i"),array("n","z"),"my name is jim!")返回:ny nane zs jzn!
查看執行結果可以發現,如果前兩個參數都使用數組則函數把數組各個對象項字串進行了替換,及needle的第一項替換為new_needle的第一項。以此類推。

如果needle數組比new_deedle長,例如:str_replace(array("m","i","s"),array("n","z"),"my name is jim!");返回:ny nane z jzn!可見,對於needle數組多出來的字串被替換為了空串。
如果new_needle數組比needle長,例如:str_replace(array("m","i"),array("n","z","x"),"my name is jim!")返回ny nane zs jzn!可見new_needle多餘的項被忽略。

5、三個參數都使用數組。

例如:str_replace(array("m","i"),array("n","z"),array("my name is jim!","the game is over"))返回的數組內容:ny nane zs jzn!the gane zs over
這個比較好理解,對兩個字串分別執行替換。

簡單總結下,防止自己忘記!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.