把字符串 "Hello world!" 中的字符 "world" 替換為 "Shanghai":
<?php echo str_replace("world","Shanghai","Hello world!"); ?>
str_replace() 函數以其他字符替換字符串中的一些字符(區分大小寫)。
該函數必須遵循下列規則:
使用帶有數組和 count 變量的 str_replace() 函數:
<?php $arr = array("blue","red","green","yellow"); print_r(str_replace("red","pink",$arr,$i)); echo "替換數:$i"; ?>*