在 PHP 中,要替換字符串中的一部分,可以使用 str_replace()
函數。這個函數接受三個參數:要查找的子字符串、要替換的新子字符串和原始字符串。下面是一個簡單的示例:
<?php
$original_string = "Hello, World!";
$search_string = "World";
$replace_string = "PHP";
$new_string = str_replace($search_string, $replace_string, $original_string);
echo $new_string; // 輸出 "Hello, PHP!"
?>
在這個例子中,我們將 $original_string
中的 “World” 替換為 “PHP”,并將結果存儲在 $new_string
變量中。最后,我們輸出新的字符串 “Hello, PHP!”。