2014-10-05 06:51:24 -06:00
|
|
|
<?php
|
2015-05-03 09:50:45 -06:00
|
|
|
|
|
|
|
class Date
|
|
|
|
{
|
2014-12-27 23:38:06 -07:00
|
|
|
const FORMAT_FULL = 'full';
|
|
|
|
const FORMAT_LONG = 'long';
|
|
|
|
const FORMAT_MEDIUM = 'medium';
|
|
|
|
const FORMAT_SHORT = 'short';
|
2015-05-03 09:50:45 -06:00
|
|
|
|
|
|
|
public static function formatDate($time, $format)
|
|
|
|
{
|
2014-12-27 23:38:06 -07:00
|
|
|
if (!$time || $time == null) {
|
|
|
|
return '';
|
|
|
|
}
|
2015-05-03 09:50:45 -06:00
|
|
|
|
2014-12-27 23:38:06 -07:00
|
|
|
return $time;
|
2014-10-05 06:51:24 -06:00
|
|
|
}
|
|
|
|
}
|