How to use PHP Explode() function?
PHP explode function splits a string by a string. It is a very handy function to split a string. Description Returns an array of strings, each of which is a substring of string formed by splitting it on boundaries formed by the string separator. Parameters separator The boundary string. string The input string. limit If limit is set and positive, …