在PHP中,可以使用str_replace()
函數來實現字符串替換。str_replace()
函數接受三個參數:需要被替換的舊字符串、新的字符串以及原始字符串。函數會返回替換后的新字符串。
以下是使用str_replace()
函數進行字符串替換的示例:
<?php
$original_string = "Hello, world!";
$old_string = "world";
$new_string = "PHP";
$replaced_string = str_replace($old_string, $new_string, $original_string);
echo $replaced_string; // 輸出 "Hello, PHP!"
?>
在這個示例中,我們將$original_string
中的$old_string
(“world”)替換為$new_string
(“PHP”),并將結果存儲在$replaced_string
中。最后,我們輸出替換后的字符串,結果為 “Hello, PHP!”。