update : 2015.11.03
php.shukuma.com검색:
|
px_timestamp2string(PECL paradox >= 1.4.0) 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 miliseconds since 0001-01-02. This function is just for convenience. It can be easily replaced by some math and the calendar functions as demonstrated in the following example. 인수
반환값
성공 시 예제
Example #1 Turn a paradox timestamp into a human readable form
<?php 위 예제의 출력: 7/15/1917 7/15/1917 01:00:00 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 miliseconds. 참고
|