+ 1
fuction exploed
Is there a function called exploed here and how it can be used
1 Odpowiedź
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)