什么是 intvector 以及如何读取/使用它们?

发布于 2024-11-25 18:53:43 字数 550 浏览 2 评论 0 原文

我如何应用 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"
  }
}

How do i apply the integers/intvectors formatted in a ICU data file...

For example;

    US{
        {
            id{"USD"}
            from:intvector{ /** 1792-01-01  */
                -1308,
                694083168,
            }
        }

Can i format these to a human-readable "from" date, e.g. 1792-01-01 in PHP?

Thanks

// Roland

Edit:
I have the integers in PHP;

["US"] => array(3)
{
  [0] => array(2)
  {
    ["from"] => array(2)
    {
      [0] => int(-1308)
      [1] => int(694083168)
    }
    ["id"] => string(3) "USD"
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暖心男生 2024-12-02 18:53:43

因此,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.

錯遇了你 2024-12-02 18:53:43

您可以使用 json-decode 来完成此任务。

You can use json-decode for this task.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文