如何仅在最后一个出现的分隔符上爆炸?
2022-08-30 18:48:57
$split_point = ' - ';
$string = 'this is my - string - and more';
我如何使用的第二个实例而不是第一个实例进行拆分。我可以以某种方式指定从右到左的搜索吗?$split_point
基本上,我如何从右向左爆炸。我只想拿起“ - ”的最后一个实例。
我需要的结果:
$item[0]='this is my - string';
$item[1]='and more';
而不是:
$item[0]='this is my';
$item[1]='string - and more';