Implode and explode in PHP
I was in the development of PHP program encountered a lot of problems, along the journey is also a stumbling, but finally will hurdles hurdles, the implementation of the functions are realized. The following two functions are the one I used in the development process. This set of functions mainly implements the splitting of strings and the combination of strings. Programmers tend to look at examples, and look at a set of examples below.
?
Split character count string function explode ()
Where the value of $row[' logistics '] is formatted similar to: 1,2,3,4,5,6,7,8
$logistics =explode (",", $row [' Logistics ']), $count = count ($logistics); for ($i =0; $i < $count; $i + +) {echo $ logistics[$i];}? So what I print out is 1 2 3 4 5 6 7 8.
?
Stitching string function implode ()
Output: Hello world!
Well, now you're going to have to look at yourself with this data.
?