php 多个分隔符在爆炸
我有一个问题,我有一个字符串数组,我想在不同的分隔符中爆炸。例如
$example = 'Appel @ Ratte';
$example2 = 'apple vs ratte'
我需要一个数组,它在@ 或vs中爆炸。
我已经写了一个解决方案,但如果每个人都有更好的解决方案,请在这里发布。
private function multiExplode($delimiters,$string) {
$ary = explode($delimiters[0],$string);
array_shift($delimiters);
if($delimiters != NULL) {
if(count($ary) <2)
$ary = $this->multiExplode($delimiters, $string);
}
return $ary;
}