fuction exploed | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
+ 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 ответ
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