php 扩展:如何使用 mb_* 函数
PHP 中有很多可用于脚本的功能。扩展编写者是否可以以某种方式使用此功能?我真的很想使用多字节函数,但找不到其示例。
There's a lot of functionality available in PHP for scripts. Is this functionality available somehow to the extension writer? I'd really like to use the multibyte functions but can't find an example thereof.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以以 exif 模块 为例。它还依赖于 mbstring 模块并“直接”调用其函数,即没有类似 call_user_function_ex(...)
例如
You can take the exif module as an example. It also depends on the mbstring module and calls its functions "directly", i.e. without something like call_user_function_ex(...)
e.g.