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,
}
}
能否将这些格式归入人类可读的“从”日期,例如PHP中的1792-01?
增 编
页: 1
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"
}
}