Wednesday, May 9, 2012

PHP: is the implode() function safe for multibyte strings?


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?


Source: Tips4all

1 comment:

  1. As long as your delimiter and the strings in the array contain only well-formed multibyte sequences there should not be any issues.

    implode basically is a fancy concatenation operator and I couldn't imagine a scenario where concatenation is not multibyte safe ;)

    ReplyDelete