$split_point = \' - \'; $string = \'this is my - string - and more\';
How can i make a split using the second instance of $split_point and not the
$split_point = ' - '; $string = 'this is my - string - and more'; $result = end(explode($split_point, $string));
This is working fine