php's explode method doesn't support multiple delimiters, so you can't pass it an array.
Also, what kind of string are you parsing that has multiple delimiters? you're best bet would be to loop through your delimiters, and re-explode some of the exploded strings.