Static Public Member Functions | |
static | convertZendToStrftime ($value, $convertDate=true, $convertTime=true) |
Public Attributes | |
const | DATETIME_INTERNAL_FORMAT = 'yyyy-MM-dd HH:mm:ss' |
const | DATE_INTERNAL_FORMAT = 'yyyy-MM-dd' |
Static Protected Member Functions | |
static | _convert ($value, $dictionary) |
Definition at line 34 of file Date.php.
static _convert | ( | $ | value, | |
$ | dictionary | |||
) | [static, protected] |
Definition at line 69 of file Date.php.
00070 { 00071 if ($convertTime) { 00072 $value = self::_convert($value, self::$_convertZendToStrftimeTime); 00073 } 00074 if ($convertDate) { 00075 $value = self::_convert($value, self::$_convertZendToStrftimeDate); 00076 } 00077 return $value; 00078 }
const DATE_INTERNAL_FORMAT = 'yyyy-MM-dd' |
const DATETIME_INTERNAL_FORMAT = 'yyyy-MM-dd HH:mm:ss' |