Tagged Questions

3
votes
1answer
163 views

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 = new Zend_Date('2011-11-14 10:45:00'); $date2 = new Zend_Date('2011-11-14 19:15:00');
2
votes
3answers
154 views

Bug with Zend_Date calculating subtraction two date

I write this function: public function calcDifferentDate($dateStart, $dateEnd = false, $output = Zend_Date::DAY) { $dateEnd = $dateEnd ? $dateEnd : Zend_Date::now()->toString('YYYY-MM-dd'); ...
2
votes
3answers
1k views

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 in above format? When I use $date = new Zend_Date(); it returns month dd, yyyy hh:mm:ss PM I ...
1
vote
2answers
2k views

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 to add hour and minute validation. In other words, I want to ...
0
votes
1answer
16 views

convert date to a different format

I have a date of the form mm-dd-yyyy. I need to convert into YYYY-MM-dd to store in the database. I did the following $eff_date=$this->post['effective_date']; ...
0
votes
2answers
91 views

Calculating difference between 2 Zend_Date objects

I have 2 Zend_Date objects: $d1 = new Zend_Date('2011-11-14 12:20:30'); $d2 = new Zend_Date('2012-11-16 13:40:10'); And I need to calculate difference. My output should be like this: Years: 1, ...
0
votes
3answers
980 views

How to calculate time passed with PHP or Zend_Date?

I'm trying to create a view helper that will display the number of minutes, hours, or days that have passed since...right now. I'm not really sure how to do it. It looks like the date comparison is ...