so i am taking a huge list of things that i want seperated by the piece array (magical, rare, etc)
this is what i tried, but obviously it only splits it up by each one at a time.
my objective is to have it go thru and split the string up when it finds any of these, rather than just one.
$piece_array = array('Magical', 'Rare', 'Mystical', 'Angelic', 'Mythical');
foreach($piece_array as $godly) {
$pieces = explode($godly, $my****);