本文介绍了PHP:implode()函数对多字节字符串安全吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
explode()
函数在mb_split()
中具有一个相关的多字节安全函数.
The explode()
function has a correlating multibyte-safe function in mb_split()
.
我没有看到implode()
的关联功能.这是否意味着爆破对于多字节字符串已经是安全的?
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.
implode
基本上是一个奇特的串联运算符,我无法想象串联不是多字节安全的情况;)
implode
basically is a fancy concatenation operator and I couldn't imagine a scenario where concatenation is not multibyte safe ;)
这篇关于PHP:implode()函数对多字节字符串安全吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!