??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/sendmaxagency.com/wp-includes/IXR/class-IXR-date.php
⬅ Kembali
<?php
/**
* IXR_Date
*
* @package IXR
* @since 1.5.0
*/
class IXR_Date {
var $year;
var $month;
var $day;
var $hour;
var $minute;
var $second;
var $timezone;
/**
* PHP5 constructor.
*/
function __construct( $time )
{
// $time can be a PHP timestamp or an ISO one
if (is_numeric($time)) {
$this->parseTimestamp($time);
} else {
$this->parseIso($time);
}
}
/**
* PHP4 constructor.
*/
public function IXR_Date( $time ) {
self::__construct( $time );
}
function parseTimestamp($timestamp)
{
$this->year = gmdate('Y', $timestamp);
$this->month = gmdate('m', $timestamp);
$this->day = gmdate('d', $timestamp);
$this->hour = gmdate('H', $timestamp);
$this->minute = gmdate('i', $timestamp);
$this->second = gmdate('s', $timestamp);
$this->timezone = '';
}
function parseIso($iso)
{
$this->year = substr($iso, 0, 4);
$this->month = substr($iso, 4, 2);
$this->day = substr($iso, 6, 2);
$this->hour = substr($iso, 9, 2);
$this->minute = substr($iso, 12, 2);
$this->second = substr($iso, 15, 2);
$this->timezone = substr($iso, 17);
}
function getIso()
{
return $this->year.$this->month.$this->day.'T'.$this->hour.':'.$this->minute.':'.$this->second.$this->timezone;
}
function getXml()
{
return '<dateTime.iso8601>'.$this->getIso().'</dateTime.iso8601>';
}
function getTimestamp()
{
return mktime($this->hour, $this->minute, $this->second, $this->month, $this->day, $this->year);
}
}
Nama
Tipe
Ukuran
Diubah
Aksi
🐘 class-IXR-base64.php
php
414 B
2016-08-27 02:08
🐘 class-IXR-client.php
php
4.6 KB
2026-05-22 04:01
🐘 class-IXR-clientmulticall.php
php
1.2 KB
2020-06-30 23:50
🐘 class-IXR-date.php
php
1.7 KB
2019-05-26 04:12
🐘 class-IXR-error.php
php
854 B
2016-08-27 02:08
🐘 class-IXR-introspectionserver.php
php
5.2 KB
2025-12-03 10:04
🐘 class-IXR-message.php
php
8.2 KB
2025-12-03 10:04
🐘 class-IXR-request.php
php
927 B
2016-08-27 02:08
🐘 class-IXR-server.php
php
6.6 KB
2025-12-03 10:04
🐘 class-IXR-value.php
php
3.7 KB
2016-08-27 02:08
📄 error_log
file
1.8 KB
2026-06-13 05:46