代码如下 | 复制代码 |
$num = 'www.111com.net'; $string = "this string has four words. "; $string = ereg_replace ('four', $num, $string); echo $string; $num = '49'; $string = "this string has four words"; $string = ereg_replace ('four', $num, $string); echo $string; $string ="测试用文字"; echo "**********$string********** "; |