PHP: implode() 函数对于多字节字符串安全吗?
explode()
函数在 mb_split()
中有一个相关的多字节安全函数。
我没有看到 implode()
的相关函数。这是否意味着内爆对于多字节字符串来说已经是安全的?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只要您的分隔符和数组中的字符串仅包含格式良好的多字节序列,就不应该有任何问题。
implode
基本上是一个奇特的串联运算符,我无法想象串联不是多字节安全的场景;)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 ;)