如何知道一个字符有多少字节?
我想知道如何找出一个字符有多少字节?
I was wondering how do I find out how many bytes does a character have?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想知道如何找出一个字符有多少字节?
I was wondering how do I find out how many bytes does a character have?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
如果您想知道 PHP 字符串中的一个字母有多少个 UTF-8 字节,那么:
strlen()
返回原始字节长度,而mb_substr()
返回根据字符集/编码的“字符”。在此示例中,从位置0
开始。If you want to find out how many UTF-8 bytes a letter in a PHP string has then:
strlen()
returns the raw byte length, whilemb_substr()
returns a "character" according to the charset/encoding. In this example from position0
.字符的存储和表示方式取决于编程语言和您使用的平台。
How a character is stored and represented depends on the programming language and the platform you are using.