What is the difference between explode and split in php?
explode
split
Both split and explode function splits the string into the array but split is used to split a string using regular expression while explode is used to split a string using another string.