php ereg_replace函數

來源:互聯網
上載者:User

$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";

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.