Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我应该使用哪个多字节处理库:iconv或mbstring?
经过一番谷歌搜索后,我没有找到足够的论据来说服我特别使用一个,而且我无法获得任何基准(而且我太懒了创建一个:-p)。
毕竟,也许这个选择并不重要?
感谢您的任何建议。
我倾向于将两者结合使用——这取决于我的需要。我使用 iconv 从一个字符集转换为另一个字符集,但 mbstring 用于更简单的操作,如 mb_strtoupper() 和 mb_stristr()。但是,如果只需要其中一个库,我建议纯粹使用 mbstring,因为它具有广泛的功能和易用性。