UTF-8 safe equivalent of ord or charCodeAt() in PHP(PHP 中 ord 或 charCodeAt() 的 UTF-8 安全等价物)
问题描述
我需要能够使用 ord() 获得与 javascript 的 charCodeAt() 函数相同的值.问题是 ord() 不支持 UTF8.
I need to be able to use ord() to get the same value as javascript's charCodeAt() function. The problem is that ord() doesn't support UTF8.
如何在 PHP 中将 Ą 转换为 260?我尝试了一些 uniord 函数,但它们都报告 256 而不是 260.
How can I get Ą to translate to 260 in PHP? I've tried some uniord functions out there, but they all report 256 instead of 260.
非常感谢您的帮助!
问候
推荐答案
ord()
以字节为单位工作(作为大多数 PHP 标准字符串函数 - 如果不是全部).您需要自己转换它,例如在多字节字符串扩展的帮助下:
ord()
works byte per byte (as most of PHPs standard string functions - if not all). You would need to convert it your own, for example with the help of the multibyte string extension:
$utf8Character = 'Ą';
list(, $ord) = unpack('N', mb_convert_encoding($utf8Character, 'UCS-4BE', 'UTF-8'));
echo $ord; # 260
这篇关于PHP 中 ord 或 charCodeAt() 的 UTF-8 安全等价物的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:PHP 中 ord 或 charCodeAt() 的 UTF-8 安全等价物
基础教程推荐
- phpmyadmin 错误“#1062 - 密钥 1 的重复条目‘1’" 2022-01-01
- 在 yii2 中迁移时出现异常“找不到驱动程序" 2022-01-01
- Doctrine 2 - 在多对多关系中记录更改 2022-01-01
- 如何在 Symfony 和 Doctrine 中实现多对多和一对多? 2022-01-01
- PHP 守护进程/worker 环境 2022-01-01
- HTTP 与 FTP 上传 2021-01-01
- 在 CakePHP 2.0 中使用 Html Helper 时未定义的变量 2021-01-01
- 使用 PDO 转义列名 2021-01-01
- 如何在 XAMPP 上启用 mysqli? 2021-01-01
- 找不到类“AppHttpControllersDB",我也无法使用新模型 2022-01-01