What is the difference between explode and split in php?
explode
split
split uses regular expressions, while explode works with delimiter characters. Using split is discouraged, because it become deprecated in PHP 5.3.