The PHP manual for split() says
This function has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly dis
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.
split()
explode()