php str_replace 替換指定次數方法 的講解

來源:互聯網
上載者:User
php str_replace方法,替換字串

格式如下:

mixed str_replace ( mixed $search , mixed $replace , mixed $subject [, int &$count ] )

search 尋找的目標值,也就是 needle。一個數組可以指定多個目標。

replace search 的替換值。一個數組可以被用來指定多重替換。

subject 執行替換的數組或者字串。也就是 haystack。如果 subject 是一個數組,替換操作將遍曆整個 subject,傳回值也將是一個數組。

count 如果被指定,它的值將被設定為替換髮生的次數。即一共發生了多少次替換。

說明:

如果 search 和 replace 為數組,那麼 str_replace() 將對 subject 做二者的映射替換。

如果 replace 的值的個數少於 search 的個數,多餘的替換講使用Null 字元串來進行。

如果 search 是一個數組而 replace 是一個字串,那麼 search 中每個元素的替換始終使用這個字串。

str_replace替換方法是區分大小寫。

例子:

<?php$str = 'abcdefgh';echo str_replace('abc', '123', $str); // 123defgh$str = '123456';$search = array(1, 2, 3, 4, 5, 6);$replace = array('a', 'b', 'c', 'd', 'f', 'g');echo str_replace($search, $replace, $str); // abcdefg$arr = array('abc','bac','cba');$result = str_replace('b', 'B', $arr, $count);print_r($result); // Array ( [0] => aBc [1] => Bac [2] => cBa )echo $count;      // 3 共替換了3次?>

使用 str_replace 來替換字串比較方便,但所有匹配 search 的值都會被替換為 replace 的值。如果指想替換指定次數,這個方法就不能實現了。

例如:user_order_list 替換為user/order_list

<?php$str = 'user_order_list';echo str_replace('_', '/', $str); // user/order/list?>

替換指定次數的方法,可以使用正則 preg_replace 方法來實現。

<?php/** * 對字串執行指定次數替換 * @param  Mixed $search   尋找目標值 * @param  Mixed $replace  替換值 * @param  Mixed $subject  執行替換的字串/數組 * @param  Int   $limit    允許替換的次數,預設為-1,不限次數 * @return Mixed */function str_replace_limit($search, $replace, $subject, $limit=-1){    if(is_array($search)){        foreach($search as $k=>$v){            $search[$k] = '`'. preg_quote($search[$k], '`'). '`';        }    }else{        $search = '`'. preg_quote($search, '`'). '`';    }    return preg_replace($search, $replace, $subject, $limit);}?>

例子:

<?php$str = 'user_order_list';echo str_replace_limit('_', '/', $str, 1); // user/order_list$arr = array('abbc','bbac','cbba');$result = str_replace_limit('b', 'B', $arr, 1);print_r($result); // Array ( [0] => aBbc [1] => Bbac [2] => cBba )?>

本文講解了php str_replace 替換指定次數方法,更多相關內容請關注php中文網。

相關推薦:

關於header,headers_sent,headers_list,header_remove 使用說明

通過PDO 查詢mysql返回欄位整型變為String型的解決方案

通過php根據地理座標來擷取國家、省份、城市,及周邊資料類

相關文章

聯繫我們

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