The explode() function has a correlating multibyte-safe function in mb_split().
I don't see a correlating function for implode(). Does this imply that implode is already safe for multibyte strings?
|
As long as your delimiter and the strings in the array contain only well-formed multibyte sequences there should not be any issues.
|
|||||||||||||
|
split()in the first place - splitting a string is multi-byte safe by default, no? But that's a different question. – Pekka 웃 Dec 19 '11 at 17:24explode()with multibyte strings as well, as long as you pass the correct binary representation of the split token. The same therefore applies toimplode()- the binary sequence passed as the join delimiter will be used literally, so as long as your delimiter is correctly stored, there should be no problems. – DaveRandom Dec 19 '11 at 17:26