評等結果
點擊便能為這篇文章進行評等!
[評等總次數: 0,平均評等: 0]
<?php
echo str_replace('are','old are','how are you?');
?>
結果顯示:
how old are you?
參數說明:
str_replace(取代前的字串,取代後的字串,原本的字串);
評等結果
點擊便能為這篇文章進行評等!
[評等總次數: 0,平均評等: 0]
學無止境,教學相長
<?php
echo str_replace('are','old are','how are you?');
?>
結果顯示:
how old are you?
參數說明:
str_replace(取代前的字串,取代後的字串,原本的字串);