I'm trying to split a text string up into paragraphs using explode.
The format of the string means that a new paragraph will always be represented by two newline characters in succession (i.e. \n\n) but when explode'ing using "\n\n" as the separator, it doesn't explode a damn thing.
It seems (as is stated in the manual notes) that explode does not like multiple characters in a separator string.
Is there a way around this?
Thanks in advance.