fuction exploed | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

fuction exploed

Is there a function called exploed here and how it can be used

3rd Aug 2017, 7:25 PM
Khalil Abu Jayyab
Khalil Abu Jayyab - avatar
1 Answer
0
There is a function called explode inside PHP. It can split a string by some criteria, and store it in an array. Example: $string1 = "Hello World"; explode(" ", $string1); //we splitted Hello World into Hello and World (because of the empty space between Hello and World)
3rd Aug 2017, 7:57 PM
Stamen
Stamen - avatar