PHP中正則替換函數preg_replace用法筆記

來源:互聯網
上載者:User

標籤:style   class   blog   c   code   java   

  今天應老闆的需求,需要將不是我們的頁面修改一個連結,用js+iframe應該也能實現,但是我想嘗試一下php實現方法。

  首先你得先把別人的頁面download到你的php中,實現方法可以用curl, file,這裡有一篇文章寫的不錯 http://www.11jn.com/phpbb/viewtopic.php?f=31&t=1390,這裡就不多說。

  然後就是用Regex找到你的連結,因為是具體的連結,就直接寫了,比如百度 (http\:\/\/www.baidu.com)


下面就是主要函數 preg_replace()

mixed preg_replace ( mixed $pattern ,     mixed $replacement ,   mixed $subject     [, int $limit = -1 [, int &$count ]] )

                           Regex(要被替換的)      替換的內容                     需要匹配替換的對象       可選,指定替換的個數,如果省略 limit 或者其值為 -1,則所有的匹配項都會被替換

  替換一個的執行個體:

        要把www.baidu.com替換成www.google.com

$content=‘http://www.baidu.com‘;$replace=preg_replace("(http\:\/\/www.baidu.com)","http://www.google.com",$content);echo $replace;

  替換的第二個執行個體:

      在一個段落中替換兩個多個欄位,www.baidu.com替換成www.google.com ,並且Windows替換成Linux

$content="http://www.baidu.com on Windows.";
$str1=array("(http\:\/\/www.baidu.com)","(Windows)");
$str2=array("http://www.google.com","Linux");
$replace=preg_replace($str1,$str2,$content);
echo $replace;

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.