| Server IP : 162.253.224.18 / Your IP : 216.73.217.81 Web Server : Apache System : Linux s18.infinitysrv.com 3.10.0-962.3.2.lve1.5.89.el7.x86_64 #1 SMP Thu Jul 9 15:55:31 UTC 2026 x86_64 User : dejavumk ( 1184) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/dejavumk/perbec.com/wp-content/plugins/duplicator-pro/classes/utilities/ |
Upload File : |
<?php
defined("ABSPATH") or die("");
/**
* Utility class working with date time values
*
* Standard: PSR-2
* @link http://www.php-fig.org/psr/psr-2
*
* @package DUP_PRO
* @subpackage classes/utilities
* @copyright (c) 2017, Snapcreek LLC
* @license https://opensource.org/licenses/GPL-3.0 GNU Public License
* @since 3.0.0
*
* @todo Finish Docs
*/
class DUP_PRO_DATE
{
public static function getLocalTimeFromGMT($timestamp)
{
$local_ticks = self::getLocalTicksFromGMT($timestamp);
$date_portion = date('M j,', $local_ticks);
$time_portion = date('g:i:s a', $local_ticks);
return "$date_portion $time_portion";
}
public static function getLocalTicksFromGMT($timestamp)
{
$ticks = strtotime($timestamp);
$ticks += ((int) get_option('gmt_offset') * 3600);
return $ticks;
}
public static function getLocalTimeFromGMTTicks($ticks)
{
$ticks += ((int) get_option('gmt_offset') * 3600);
return self::getStandardTime($ticks);
}
public static function getStandardTime($ticks)
{
//return date('D, d M Y H:i:s', $ticks);
return date('D, d M H:i:s', $ticks);
}
public static function getWPTimeFromGMTTime($timestamp, $includeDate = true, $includeTime = true)
{
$ticks = self::getLocalTicksFromGMT($timestamp);
$date_format = get_option('date_format');
$time_format = get_option('time_format');
if ($includeDate) {
$date_portion = date($date_format, $ticks);
} else {
$date_portion = '';
}
if ($includeTime) {
$time_portion = date($time_format, $ticks);
} else {
$time_portion = '';
}
if ($includeDate && $includeTime) {
$seperator = ' ';
} else {
$seperator = '';
}
return "$date_portion$seperator$time_portion";
}
}