在哪里可以获得 PHP 所有多字节函数的完整列表?
在哪里可以获得 PHP 所有多字节函数的完整列表? 我需要检查我的应用程序并将非 MB 字符串函数切换为新的 mb 函数。
Where can I get a complete list of all multi-byte functions for PHP? I need to go through my application and switch the non MB string functions to the new mb functions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
怎么样:
https://www.php.net/manual-lookup.php ?pattern=mb
https://www.php.net/mbstring
http://www.php.net/manual/en/ref.mbstring.php
How about:
https://www.php.net/manual-lookup.php?pattern=mb
https://www.php.net/mbstring
http://www.php.net/manual/en/ref.mbstring.php
对于问题的“并将非 MB 字符串函数切换为新的 mb 函数”部分:您可能对 http://php.net/mbstring.overload:
And for the "and switch the non MB string functions to the new mb functions" part of the question: You might be interested in http://php.net/mbstring.overload:
您可以使用扩展主要多字节函数的库,例如:
http://code.google.com/p/mbfunctions/
对于 mb_trim 或 mb_strtr,即。
You could use libraries that extends the main multibyte functions, like:
http://code.google.com/p/mbfunctions/
For mb_trim or mb_strtr, ie.