$split_point = ' - ';
$string = 'this is my - string - and more';
最初のインスタンスではなく、2 番目のインスタンスを使用して分割するにはどうすればよいです$split_point
か。どうにかして右から左への検索を指定できますか?
基本的に、右から左に爆発する方法を教えてください。「 - 」の最後のインスタンスだけをピックアップしたい。
私が必要とする結果:
$item[0]='this is my - string';
$item[1]='and more';
ではない:
$item[0]='this is my';
$item[1]='string - and more';