$string = "this is a test";
echo str_replace(" is", " was", $string);
echo ereg_replace("( )is", "1was", $string); 其中1就是第一個括弧中空格
echo ereg_replace("(( )is)", "2was", $string); 其中2就是第二個括弧的空格
上面三行也就是把" is"替換為" was";都有空格的。
ereg_replace ( string pattern, string replacement, string string)
也就是說如果pattern中帶有()得字串(如;括弧中有空格),那你的replacement就可以使用如1的字串,那這個1就給可以用你第1個括弧中字串來替換,如果是2那就用第2個括弧中的字串替換.
括弧從左至右,以左括弧為準.
下面那個是去掉url中的如&page=1
符串比對解析並取代。
文法: string ereg_replace(string pattern, string replacement, string string);
傳回值: 字串
函數種類: 資料處理
內容說明
本函數以 pattern 的規則來解析比對字串 string,欲取而代之的字串為參數 replacement。傳回值為字串類型,為取代後的字串結果。
使用範例
ken@freebsdrocks.com 在 16-mar-1999 提出的例子。
<?php教程
$text = 'this is a {1} day, not {2} and {3}.';
$daytype = array( 1 => 'fine',
2 => 'overcast',
3 => 'rainy' );
while (ereg ('{([0-9]+)}', $text, $regs)) {
$found = $regs[1];
$text = ereg_replace("{".$found."}", $daytype[$found], $text);
}
echo "$textn";
// this is a fine day, not overcast and rainy.
?>
ken@freebsdrocks.com 並同時提出具有相同功能的perl 程式範例如下:
$text = 'this is a {1} day, not {2} and {3}.';
%daytype = ( 1 => 'fine',
2 => 'overcast',
3 => 'rainy' );
$text =~ s/{(d+)}/$daytype{$1}/eg;
print "$textn";