Tagged Questions

4
votes
2answers
221 views

Bug in Zend_Date (back in time)

I have a very strange problem, Zend_Date is converting my timestamp to a year earlier. In my action: // Timestamp $intTime = 1293922800; // Zend_Date object $objZendDate = new Zend_Date($intTime); ...
3
votes
1answer
101 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');
3
votes
5answers
3k views

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('2010-03-05', 'YYYY-mm-dd'); $dateDiff = $day2->getDate()->get(Zend_Date::TIMESTAMP) - ...
3
votes
2answers
833 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 Values // SELECT ...
2
votes
3answers
121 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
1answer
152 views

Work Around for Zend Date DST Bug

I discovered a bug in Zend_Date when setting a time that crosses the DST change. Here's code that illustrates the problem: date_default_timezone_set('America/New_York'); echo '<pre>'; // DST ...
2
votes
3answers
951 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 ...
2
votes
3answers
577 views

How can I simply change the Timezone Offset with Zend_Date?

I'm using Zend_Date to manage dates/times in a scheduling app. The only way I'm able to determine the user's Timezone is via Javascript which only gives a Timezone Offset. Zend_Date only seems to ...
2
votes
1answer
510 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 their local time. What ...
1
vote
1answer
89 views

First day of each month

If I start with the current date, how can I get the first Friday of each month? I was thinking about using $date->get(Zend::WEEKDAY) and comparing that to Friday and then with DAY and checking if it ...
1
vote
1answer
58 views

Zend_Date adding the timezone to a subtraction result

I have this code: <?php $start = new Zend_Date("2011-09-06T10:00:00+02:00",Zend_Date::ISO_8601); $end = new Zend_Date("2011-09-06T10:01:00+02:00",Zend_Date::ISO_8601); echo ...
1
vote
1answer
70 views

Should dates and currencies always be passed around as objects?

Help me settle an argument with a coworker... We’re using Zend Framework and PHP and much of the data we deal with includes dates and prices. I’ve been arguing that when the data is retrieved (either ...
1
vote
2answers
262 views

Zend_Date tooooooooo slow, real slow

This is my code: $frontendOptions = array('lifeTime' => 10); $backendOptions = array('cacheDir' => '../tmp/'); $cache = Zend_Cache::factory( 'Core', ...
1
vote
1answer
80 views

zend date and summertime

I have a issue with dates crossing from winter/summer time.. please see example $pickUpDate = '2011-10-23'; $dropOffDate = '2011-10-31'; $pickUpTime = '09:00'; ...
1
vote
1answer
263 views

zend-framework how to Localize Zend_Date

how to localize the Zend_Date when i wrote Zend_Debug::dump(Zend_Locale::getTranslationList('type', 'en_US')); i got long array some of its elements . . ["hebrew"] => string(15) "Hebrew ...
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 ...
1
vote
1answer
2k views

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 if today is Tuesday (Dec 1, 2009) I want to get the date of Monday (Dec 7, 2009). How can I do this with ...
1
vote
2answers
1k 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, Zend_Date::ISO_8601)) { ...
0
votes
0answers
53 views

Zend Date Ranges

I'm trying to write a class to give me date ranges for use with a custom calendar, which modifies traditional calendar parts to always include a Monday start date and Sunday end date. For example this ...
0
votes
0answers
117 views

Default Timestamp value when using custom DateTime type with doctrine2

I'm using Doctrine2.1 and the Zend Framework for the server side of a php-flex project. The date in the VO's coming from Flex (Zend_Amf) are ZendDate types. So I would like to map these that Doctrine ...
0
votes
2answers
76 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
215 views

Saving a Zend date in the database with Doctrine 2.1

I want to save a datetime in the database which was created with the doctrine schema tool. In my form I set a date and time and i want to save it as a datetime in the database. So i tried this: ...
0
votes
1answer
107 views

Zend Jalali Date

Does Zend support jalali date and calendar? And How can i get that ? I tried this: $locale = new Zend_Locale('fa_IR'); $date = new Zend_Date(); $new_date= ...
0
votes
1answer
473 views

Zend_Date / Zend_Locale : Change date format for a specific locale?

Is it possible to instruct Zend_Locale that it should use a certain locale, except for a minor alteration to the date format? I don't want to use the Zend_Date::toString() with the specific ...
0
votes
1answer
359 views

Zend_Date::isDate won't enforce $format

I've having an issue where Zend_Date::isDate is returning true even when the value doesn't necessarily match the format given. For example: $time = "12:34:56"; // Time doesn't have AM/PM attached ...
0
votes
2answers
68 views

Zend Date giving me zeroes, why?

More problems with dates. Basically I'm trying to populate a table with some datetime values from Zend. The datatype of the column that I'm trying to populate is 'datetime'. However, no matter which ...
0
votes
1answer
68 views

Zend_Date returning strange format online - works fine on my localhost

I have the following code to format dates: $date = new Zend_Date(); $date->set(strtotime($some_date); echo ($date->get(Zend_Date::DATE_FULL)); it wokrs fine on my localhost outputting the ...
0
votes
4answers
126 views

Zend Date Weirdness - Missing Configuration?

I'm getting odd output from the getDate() function. It's supposed to return a date without the time parts, but I am getting time parts. Am I missing some configuration option that would correct ...
0
votes
1answer
676 views

Zend_Date and setting timezone on instation

I have a ZF app and am saving times as UTC in MySQL db. When I retrieve, them I'd like to tell Zend_Ddate that they are UTC rather than the timezone set in php.ini of 'America/Los Angeles'. ...
0
votes
3answers
829 views

zend_date relative time

i want to make stackoverflow timestamps(X minutes ago, etc). How i can make it using zend_date? I found http://stackoverflow.com/questions/1639892/how-to-calculate-time-passed-with-php-or-zend-date ...
0
votes
1answer
100 views

Filtering table rows with higher date than provided

I'm currently trying to do it that way: // Creating date object $date = new Zend_Date(); // Adding to it 4 weeks $date->add('4', Zend_Date::WEEK); // it's expire day // ...
0
votes
1answer
328 views

how to get the number of weeks of current year using Zend_Date class

how can we get number of weeks of current year, for example if it's 2009 there are 53 weeks and 2010 has 52
0
votes
2answers
754 views

How print all the weeks in an year (or first monday of year)

How print all the weeks which start with monday and end with sunday.. like below ..using Zend_date 1 04-Jan-2010-10-Jan-2010 2 11-Jan-2010-17-Jan-2010 3 18-Jan-2010-24-Jan-2010
0
votes
1answer
236 views

Zend_Date language translation

I have a function that returns me a date string using Zend_Date. $date = new Zend_Date(); $date->setOptions(array('format_type' => 'php')); $date->setTimestamp($timestamp); return ...
0
votes
1answer
383 views

Internationalized date formatting with Zend_Date ( Japanese )

Disclaimer: you might need to install a font/typeface which supports Japanese if you see messed up characters. I'm trying to replicate what I've been doing so far with setlocale and ...
0
votes
1answer
1k views

Zend_Date::toString() outputs the wrong year. Bug in my code, or Zend_Date?

I'm using Zend_Date to set and get the year, but it is not being set as the correct year. I set the year as 2010, and it returns the year as 2009. What am I doing wrong? Is there a bug in Zend_Date? ...
0
votes
2answers
358 views

PHP loop, date sorting challenge

I'm having trouble trying to figure out how to achieve this programming challenge in my Zend Framework application: I need to create an array that looks like this: $array = array( 0 => ...
0
votes
3answers
954 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 ...
0
votes
2answers
447 views

formatting date from twitter response Zend Framework

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 example) What format is this?: Fri ...
-2
votes
1answer
33 views

Zend_Date subtraction of two datetime mysql values

i am building a small application to calculate employee attendance. A user will check in, his check in time will be recorded in a mysql datetime format, for example check_in_time 2011-12-16 20:27:20 ...