基本上我有這個網址http://xxxxxxx.xxx/example.com/category-1sub-category-11/products.html,我有這個字符串sub-category-11
,我想在字符串之前加上一個斜槓:http://xxxxx.xxx/example.com/category-1/sub-category-11/products.html。str_replace通過在一個字後面加一個斜槓php
$url = 'http://localhost/example.com/category-1sub-category-11/products.html';
$string = 'sub-category-11';
$new_url = preg_replace('/\b'.$string.'\b/', '/'.$string, $url);
對此有何幫助?非常讚賞。
也許會更好不是一開始就把它建成這樣,而不是改變它? – 2014-08-28 11:28:57