The PHP manual for split() says
This function has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly dis
Both are used to split a string into an array, but the difference is that split() uses pattern for splitting whereas explode() uses string. explode() is faster than split() because it doesn't match string based on regular expression.
split()
explode()