0
What is the different use of implode and explode function?
2 Answers
0
The implode() function returns a string from the elements of an array.
Syntax:
string implode(string $seperator, array $array)
The explode() function breaks a string into an array.
Syntax:
array explode(string separator,string string)
0
Aksita G ok thanks :)