If you want to get rid of any excess white space, but cannot always be sure if it will be there, preg_split() can be useful, too:
$parts = preg_split('/\s*>\s*/', $string, null, PREG_SPLIT_NO_EMPTY);
// last arg so leading ">" does not create empty element