What is the difference between explode and split in php?
explode
split
explode is generally faster than split ; but its not multibyte character safe.
We will use explode when we are absolutely guaranteed that our input is in single-byte character sets such as ISO-8859-1, and split when we are dealing with user input.