Php uses The explode () function to split a string into an array, an explode array. Php uses The explode () function to split a string into an array. the example in this article describes how php splits a string into an array using The explode () function. We will share with you how to use the explode () function to split strings into arrays and use the explode array.
This example describes how php splits strings into arrays using The explode () function. 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.
The aggregate () function splits a string into an array. the example in this article describes how php splits a string into an array using The explode () function. Share it with you...