Exploding by Array of Delimiters
Posted
by JoeC
on Stack Overflow
See other posts from Stack Overflow
or by JoeC
Published on 2010-05-18T19:04:28Z
Indexed on
2010/05/18
19:10 UTC
Read the original article
Hit count: 311
Is there any way to explode() using an array of delimiters?
PHP Manual:
array explode ( string $delimiter , string $string [, int $limit ] )
Instead of using string $delimiter
is there any way to use array $delimiter
without affecting performance too much?
© Stack Overflow or respective owner