Top "Zend-date" questions

PHP Zend date format

I want to input a timestamp in below format to the database. yyyy-mm-dd hh:mm:ss How can I get …

php zend-framework date zend-date formatdatetime
Zend Date -- day difference

I have the below line of codes $day1 = new Zend_Date('2010-03-01', 'YYYY-mm-dd'); $day2 = new Zend_Date(…

zend-framework zend-form zend-date
How to compare the date parts of two Zend_Date objects?

I'd like to check if to Zend_Date datetimes are on the same day. How can I do that? $date1 = …

php zend-framework date zend-date
Zend_Date: How to get the date of an upcoming day?

I want to get the date of the closest Monday in the future (i.e. not in the past). So …

php zend-framework zend-date
How to create a datetime validator in a Zend Framework form?

By default a Zend Framework date validator uses the date format yyyy-MM-dd: $dateValidator = new Zend_Validate_Date(); But I want …

php zend-framework date zend-date zend-validate