Efectul de panning
April 19th, 2011
You need to explode a string by multiple delimiters?
You need to use the preg_split function. Preg_split is a function similar to explode.
Explode splits a string by a string, Preg_split splits a string by a regular expression.
You have a text and you need to explode it by two strings, “with” and “and”. Read more…