Skip to main content

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: Tips4allCCNA FINAL EXAM

Comments

  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

Post a Comment

Popular posts from this blog

Wildcards in a hosts file

I want to setup my local development machine so that any requests for *.local are redirected to localhost . The idea is that as I develop multiple sites, I can just add vhosts to Apache called site1.local , site2.local etc, and have them all resolve to localhost , while Apache serves a different site accordingly.