$year -= 1970;
} return $this->
_assign($calc,
$this->
mktime($match[4
],
$match[5
],
$match[6
], 1 +
$match[2
], 1 +
$match[3
], 1970 +
$match[1
], true
),
$this->
mktime($hour,
$minute,
$second, 1 +
$month, 1 +
$day, 1970 +
$year, true
), false
);
break;
case self::COOKIE:
$result =
preg_match("/^\w{6,9},\s(\d{2})-(\w{3})-(\d{2})\s(\d{2}):(\d{2}):(\d{2})\s.{3,20}$/",
$date,
$match);
if (!
$result) { throw new Zend_Date_Exception("invalid date (
$date) operand, COOKIE format expected", 0, null,
$date);
} $matchStartPos =
iconv_strpos($match[0
], ' ', 0, 'UTF-8'
) + 1;
$match[0
] =
iconv_substr($match[0
],
$matchStartPos,
iconv_strlen($match[0
], 'UTF-8'
) -
$matchStartPos,
'UTF-8'
);
$months =
$this->
_getDigitFromName($match[2
]);
$match[3
] = self::
getFullYear($match[3
]);
if (($calc == 'set'
) || ($calc == 'cmp'
)) { --
$months;
--
$month;