/**
* Returns this object's internal UNIX timestamp (equivalent to Zend_Date::TIMESTAMP).
* If the timestamp is too large for integers, then the return value will be a string.
* This function does not return the timestamp as an object.
* Use clone() or copyPart() instead.
*
* @return integer|string UNIX timestamp
*/
public function getTimestamp()
{
return $this->getUnixTimestamp();
}
/**
* Returns the calculated timestamp
* HINT: timestamps are always GMT
*
* @param string $calc Type of calculation to make
* @param string|integer|array|Zend_Date $stamp Timestamp to calculate, when null the actual timestamp is calculated
* @return Zend_Date|integer
* @throws Zend_Date_Exception
*/