str_replace可查找替換常規字符,
preg_replace可查找替換回車換行字符(\r\n)
preg_replace常用在
<meta name="description" content="<?php echo htmlspecialchars(utf_substr(preg_replace('/\r\n/','',str_replace(' ','',strip_tags($this->getDescription()))),400)) ?>">
內容的過濾,過濾回車換行(\r\n)等
把
代碼如下 復制代碼<a href="/%E5%8A%A8%E4%BD%9C%E5%86%92%E9%99%A9_1.html1">首頁</a> <a href="/%E5%8A%A8%E4%BD%9C%E5%86%92%E9%99%A9_1.html0" class="a1">上一頁</a>
用str_replace函數和preg_replace函數替換成
代碼如下 復制代碼<a href="/%E5%8A%A8%E4%BD%9C%E5%86%92%E9%99%A9_1.html">首頁</a> <a href="/%E5%8A%A8%E4%BD%9C%E5%86%92%E9%99%A9_1.html" class="a1">上一頁</a>
例子
代碼如下 復制代碼$pages = $keyword_data_db->pages;
$pages = str_replace('?page=', '', $pages);
$pages = preg_replace('/_([0-9]+).html([0-9]+)/', '_$2.html', $pages);
$pages = str_replace('_0.html', '_1.html', $pages);
再看個比較例子
代碼如下 復制代碼
$str =
'111111110000000000000000000000000000000111000001000100010000010010000010010000010100000010
';
$str = str_repeat($str, 1);
$pattern1 = array('12345'=>'', '67891'=>'');
$pattern2 = array('a'=>'', '1234567890'=>'');
$pattern3 = '/12345|67891/';
$pattern4 = '/a|1234567890/';
$pattern5 = array('12345', '67891');
$pattern6 = array('a', '1234567890');
$t = microtime(true);
echo microtime(true)-$t, "/n"; //0.4768660068512 2.7257590293884
$t = microtime(true);
for($i=0; $i<10000; $i++)
{
preg_replace($pattern3, '', $str);
}
echo microtime(true)-$t, "/n"; //0.30504012107849 1.0864448547363
$t = microtime(true);
for($i=0; $i<10000; $i++)
{
preg_replace($pattern4, '', $str);
}
echo microtime(true)-$t, "/n"; //0.30298089981079 1.117014169693
$t = microtime(true);
for($i=0; $i<10000; $i++)
{
str_replace($pattern5, '', $str);
}
echo microtime(true)-$t, "/n"; //0.18029189109802 0.22510504722595
$t = microtime(true);
for($i=0; $i<10000; $i++)
{
str_replace($pattern6, '', $str);
}
echo microtime(true)-$t, "/n"; //0.18104100227356 0.23055601119995
//說明:當str_repeat的第二個參數為1時輸出第一個數字,當為8時輸出第二個數字
區別
區別就是str_replace被替換(查找)的內容是固定的、確定的,當然可以使用變量,但是變量也表示固定的、確定的內容,比如可以完成把所有的\n替換為<br>等場合。
而preg_replace被替換(查找)的內容是用規則來描述的,比如可以把所有的<和>之間的內容(HTML代碼)替換掉。當然preg_replace也可以用來替換固定內容。
根據以上規則,所有str_replace能做的事情preg_replace都能辦到,但是preg_replace的速度要慢些,使用也要復雜些,所以我們應該盡力使用str_replace。