This article describes how php splits strings into arrays using The explode () function, which has some reference value. For more information, see the following example () the function splits a string into an array. Share it with you for your reference. The specific analysis is as follows:
Explode () function: splits a string into an array.
The sample code is as follows:
<? Php $ str = "Chaoyang district, Haidian district, Xicheng district, Dongcheng district, Fengtai district"; $ arr = explode (",", $ str); echo""; Print_r ($ arr);?>
The result is as follows:
Array ([0] => Chaoyang district [1] => Haidian District [2] => Xicheng district [3] => Dongcheng District [4] => Fengtai District)
Supplement:
Syntax: explode (parameter 1, parameter 2)
Parameter 1: What to split, as shown in the preceding example ",".
Parameter 2: string to be split.
I hope this article will help you with php programming.