16 lines
232 B
PHP
16 lines
232 B
PHP
<?php
|
|
|
|
class Excel_DateTime
|
|
{
|
|
public $value;
|
|
|
|
function __construct($value)
|
|
{
|
|
$this->value = intval($value);
|
|
}
|
|
|
|
function getString()
|
|
{
|
|
return date('Y-m-d\TH:i:s.u', $this->value);
|
|
}
|
|
}
|