⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.78
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-pear
/
pear
/
php
/
Horde
/
Compress
/
Tnef
/
View File Name :
Date.php
* @category Horde * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 * @package Compress */ /** * Object to parse and represent a date encapsulated by a TNEF file. * * @author Michael J Rubinsky
* @category Horde * @copyright 2002-2017 Horde LLC * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 * @package Compress */ class Horde_Compress_Tnef_Date extends Horde_Compress_Tnef_Object { public $date; public function __construct($data) { $year = $this->_geti($data, 16); $month = $this->_geti($data, 16); $day = $this->_geti($data, 16); $hour = $this->_geti($data, 16); $minute = $this->_geti($data, 16); $second = $this->_geti($data, 16); try { $this->date = new Horde_Date( sprintf( '%04d-%02d-%02d %02d:%02d:%02d', $year, $month, $day, $hour, $minute, $second) ); } catch (Horde_Date_Exception $e) { throw new Horde_Compress_Exception($e); } } }