2014-10-19 146 views

回答

3

放入如逗號分隔符來在以顯着的部分中的字符串分開,然後使用爆炸函數分解成一個數組

$newstring = str_replace('http', ',http', $yourstring); 
$newstring = ltrim($newstring, ','); //remove first one 
$result = explode(',' , $newstring); 
1

是的,有一些很好的方法來實現這一目標。

+1

,這是不考慮作爲回答 – 2014-10-19 16:02:31

+3

@AvinashBabu它如何回答「是否有辦法實現這個目標?」這個問題? – 2014-10-19 16:02:52

+1

它必須是一個評論..;) – 2014-10-19 16:06:56