| Server IP : 195.130.67.5 / Your IP : 216.73.216.231 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/icd/modules/mod_cool_jquery_countdown/ |
Upload File : |
<?php
/**
* Version 1.2
* @Copyright Copyright (C) 2010- ofertaweb.ro
* @license GNU/GPL http://www.gnu.org/copyleft/gpl.html
******/
$now = time();
$target = mktime(
$config['targetDate']['hour'],
$config['targetDate']['minute'],
$config['targetDate']['second'],
$config['targetDate']['month'],
$config['targetDate']['day'],
$config['targetDate']['year']
);
$diffSecs = $target - $now;
$date = array();
$date['secs'] = $diffSecs % 60;
$date['mins'] = floor($diffSecs/60)%60;
$date['hours'] = floor($diffSecs/60/60)%24;
$date['days'] = floor($diffSecs/60/60/24)%7;
$date['weeks'] = floor($diffSecs/60/60/24/7);
foreach ($date as $i => $d) {
$d1 = $d%10;
$d2 = ($d-$d1) / 10;
$date[$i] = array(
(int)$d2,
(int)$d1,
(int)$d
);
}
?>