The PHP manual for split() says

This function has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly discouraged...Use explode() instead.

But I can't find a difference between split() and explode(). join() hasn't been deprecated, so what gives?

link|improve this question

2  
Split gives you string fragments, whereas explode gives you machine fragments. Eh, probably not ... :-) – Peter Rowell Sep 4 '10 at 5:12
@Peter Rowell: split gives you two strands of hair, whereas explode gives you shrapnel. – BoltClock Sep 4 '10 at 5:13
2  
Here I come! hehe :) – Your Common Sense Sep 4 '10 at 5:51
@Col. Shrapnel: kaboom – BoltClock Sep 4 '10 at 7:21
feedback

4 Answers

up vote 17 down vote accepted

It's been deprecated because

  • explode() is substantially faster because it doesn't split based on a regular expression, so the string doesn't have to be analyzed by the regex parser
  • preg_split() is faster and uses PCRE regular expressions for regex splits

join() and implode() are aliases of each other and therefore don't have any differences.

link|improve this answer
1  
+1, that answers all of his questions. – codaddict Sep 4 '10 at 5:11
1  
So they messed up when they named it, apparently? Sounds like it should have been called ereg_split(). – Theodore R. Smith Sep 4 '10 at 9:24
@hopeseekr: PHP always messes up naming of functions ;) And yeah, I guess you could say that! – BoltClock Sep 4 '10 at 9:32
feedback

split uses regex, while explode uses a fixed string. If you do need regex, use preg_split, which uses PCRE (the regex package now preferred across the PHP standard library).

link|improve this answer
feedback

In split() you can use regular expressions to split a string. Whereas explode() splits a string with a string. preg_split is a much faster alternative, should you need regular expressions.

link|improve this answer
feedback

Both the functions are used to Split a string.

However, Split is used to split a string using a regular expression.

On the other hand, Explode is used to split a string using another string.

E.g explode (" this", "this is a string"); will return “Is a string

E.g Split (" + ", "This+ is a string");

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.