PHP uses the explode () function to split a string into an array of methods, explode the array
This example describes how PHP uses the explode () function to split a string into an array. Share to everyone for your reference. The specific analysis is as follows:
Explode () function: Splitting a string into an array
The sample code is as follows:
<?PHP$STR = "Chaoyang District, Haidian District, Xicheng District, Dongcheng District, Fengtai"; $arr = Explode (",", $str); echo "";p Rint_r ($arr);?
The results are as follows:
array ([0] = Chaoyang [1] = Haidian [2] =& Gt Xicheng District [3] = Dongcheng District [4] = Fengtai)
Add:
syntax: explode (parameter 1, parameter 2)
Parameter 1: Click on what to split, as in the previous example, ",".
Parameter 2: A string that needs to be split.
Hopefully this article will help you with your PHP programming.
http://www.bkjia.com/phpjc/959112.html www.bkjia.com true http://www.bkjia.com/phpjc/959112.html techarticle php using the Explode () function to split a string into an array, explode an array This example describes PHP using explode () function to split a string into an array of methods. Share to everyone for a big ...