什么是 intvector 以及如何读取/使用它们?
我如何应用 ICU 数据文件中格式化的整数/整数向量...
例如;
US{
{
id{"USD"}
from:intvector{ /** 1792-01-01 */
-1308,
694083168,
}
}
我可以将它们格式化为人类可读的“起始”日期,例如 PHP 中的 1792-01-01 吗?
谢谢
//罗兰
编辑: 我有 PHP 中的整数;
["US"] => array(3)
{
[0] => array(2)
{
["from"] => array(2)
{
[0] => int(-1308)
[1] => int(694083168)
}
["id"] => string(3) "USD"
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因此,intvector 只是一个整数数组。
粗体:您不应该直接读取 ICU 数据!!! 使用 API。
http://icu-project.org/apiref/icu4c/ucurr_8h.html是处理该数据的 API。
如果您确实想直接获取此数据,
但请不要阅读内部 ICU直接数据。
So, the intvectors are just an array of ints.
Boldface: You should not be reading the ICU data directly !!! Use APIs.
http://icu-project.org/apiref/icu4c/ucurr_8h.html is the API which works with this data.
If you really want to get at this data directly,
But please don't read the internal ICU data directly.
您可以使用 json-decode 来完成此任务。
You can use json-decode for this task.