Tagged Questions

2
votes
1answer
44 views

How to use Zend_Date to print a time in a specific timezone

In my app I use Zend_Date. I have set date_default_timezone_set('UTC') because internally and in the database I only want to have UTC times. For users I want to display it in the …
1
vote
1answer
34 views

Problem with Zend_Date and ISO_8601 format

Frankly, I'm flummoxed. Can anyone tell me why I would get a failure message with this code? $date = Zend_Date::now(); $date = $date->getIso(); if(Zend_Date::isDate($date, Zen …
0
votes
2answers
68 views

Automatically selecting dates from databases as Zend_Date objects

From what I understand, the best way to deal with dates in the Zend Framework is to select them as a Unix timestamp from the database. Quick Creation of Dates from Database Date V …
0
votes
3answers
114 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 d …
0
votes
2answers
57 views

formatting date from twitter response Zend Framework

Hi everybody, im trying to formatting the date field 'created_at' from Twitter API response with Zend_Date. I want output the date like this: 21 of July of 2009, 12:30:00 (for exa …