我有一个问题,我有一个字符串数组,并且我想在其他定界符中爆炸。例如
$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; }
怎么用
$ output = preg_split(“ /(@ | vs)/”,$ input);