PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Split() splits string into array by regular expression. It is faster to use explode(), which does not take the overhead of regular expression. It depends upon your requirement to use these functions. For more details. Go through it: http://www.php.net/manual/en/function.split.php
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.