php取代字串裡字元的方法:1.透過substr_replace函數把字串的一部分替換為另一個字串;2、使用str_replace函數將一個字串替換字串中的其他字元。
推薦:《PHP影片教學》
#用於從字串中替換指定字串。
相關函數如下:
substr_replace() 函數用來把字串的一部分替換為另一個字串,傳回混合類型。
語法:
mix substr_replace ( mixed string, string replacement, int start [, int length] )
#參數 | 說明 |
---|---|
string | 要處理的字串 |
replacement | 要插入的字串 |
start | 字串開始位置,起始位置為0 ,為負則從字串結尾的指定位置開始 |
length | #可選,字串傳回的長度,預設是直到字串的結尾,為負則從字串末端傳回 |
範例:
b1994d013bac23ea4caf7ffd6145175b
如果start 是負數且length 小於等於start ,則length 為0。
str_replace() 函數使用字串取代字串中的另一些字符,傳回混合類型。
語法:
mixed str_replace( mixed search, mixed replace, mixed string [, int &count] )
#參數 | 說明 |
---|---|
search | 要尋找(被取代)的字串 |
replace | 要取代search 的字串 |
#string | 要處理的字串 |
count | 可選,一個對替換計數的變數 |
範例:
<?php echo str_replace("world","earth","Hello world!"); //输出 Hello earth! //替换多个,且第二个参数为空字符 echo str_replace("o","","Hello world!"); //输出 Hell wrld! //使用数组 $arr = array("e", "o"); $arr2 = array("x", "y"); echo str_replace($arr, $arr2, "Hello World of PHP", $i); //输出 Hxlly Wyrld yf PHP echo $i; //输出4 ?>
以上是php如何替換字串裡的字符的詳細內容。更多資訊請關注PHP中文網其他相關文章!