I need to split a string in PHP by \"-\" and get the last part.
So from this:
abc-123-xyz-789
I expect to get
Just Call the following single line code:
$expectedString = end(explode('-', $orignalString));