|
PHP5中文手册
px_timestamp2string(PECL paradox:1.4.0-1.4.1) px_timestamp2string — Converts the timestamp into a string. 说明
string px_timestamp2string
( resource $pxdoc
, float $value
, string $format
)
Turns a timestamp as it stored in the paradox file into human readable format. Paradox timestamps are the number of milliseconds since 1.1.0000. This function is just for convenience. It can be easily replaced by some math and the calendar functions as demonstrated in the following example. 参数
返回值如果成功则返回 TRUE,失败则返回 FALSE。 范例
Example#1 Turn a paradox timestamp into a human readable form
<?php 上例将输出:
The Julian day count as passed to jdtogregorian() has a different base of 1.1.4714 b.c. and must therefore be calculated by adding 1721425 to the day count used in the paradox file. Turning the day count into a timestamp is easily done by multiplying with 86400000.0 to obtain milli seconds. |