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
1answer
162 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
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 ...
2
votes
3answers
594 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 ...
1
vote
0answers
67 views
Zend_Date not working it seems
I have been working with Zend_Date. Can anyone tell me if the behaviour below is normal? The returned months seem to be wrong. I have put the output in comments.
Thanks for any help!
$oDate = new ...
1
vote
1answer
61 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
73 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
302 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
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
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
282 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
126 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
502 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
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
75 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
130 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
711 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
1answer
340 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
799 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
251 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
2answers
364 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
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 ...
-2
votes
1answer
38 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
...