���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home3/cpr76684/public_html/Aem/lib/phpxmlrpc/Helper/Date.php
���ѧ٧ѧ�
<?php namespace PhpXmlRpc\Helper; class Date { /** * Given a timestamp, return the corresponding ISO8601 encoded string. * * Really, timezones ought to be supported but the XML-RPC spec says: * * "Don't assume a timezone. It should be specified by the server in its documentation what assumptions it makes * about timezones." * * These routines always assume localtime unless $utc is set to 1, in which case UTC is assumed and an adjustment * for locale is made when encoding * * @param int $timet (timestamp) * @param int $utc (0 or 1) * * @return string */ public static function iso8601Encode($timet, $utc = 0) { if (!$utc) { $t = date('Ymd\TH:i:s', $timet); } else { $t = gmdate('Ymd\TH:i:s', $timet); } return $t; } /** * Given an ISO8601 date string, return a timet in the localtime, or UTC. * * @param string $idate * @param int $utc either 0 or 1 * * @return int (datetime) */ public static function iso8601Decode($idate, $utc = 0) { $t = 0; if (preg_match('/([0-9]{4})([0-1][0-9])([0-3][0-9])T([0-2][0-9]):([0-5][0-9]):([0-5][0-9])/', $idate, $regs)) { if ($utc) { $t = gmmktime($regs[4], $regs[5], $regs[6], $regs[2], $regs[3], $regs[1]); } else { $t = mktime($regs[4], $regs[5], $regs[6], $regs[2], $regs[3], $regs[1]); } } return $t; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�