我有一个问题,我有一个字符串数组,并且我想在不同的定界符中爆炸。例如

$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);

关于php - PHP多个分隔符 explode ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4955433/

10-10 07:52