date

PHP return JS UTC date format

Is there any way I can return a date using PHP that is the same format that Date.UTC(y,m,d) returns? Here is an example of the format I need: 1274745600000 (Apr 25, 2010) ...

VSFTPD mdtm_write options

Hi, Im trying to preserve the date of the uploaded files with the mdtm_write=YES but i can get this to work. I've tried FileZilla and Windows 7 'Map network drive' but the file dates changes no matter what i try. What am i doing wrong here? ...

Why are user input dates losing a day? (But not when run locally?)

First, I hope this is the right place for this question. Because I believe this to be a server configuration problem, I wasn't sure if this should go on serverfault. So we have a spring-mvc webapp running on Tomcat servers and connected to an Oracle database. On one of these pages is a form for the user to fill out where they can enter ...

date in wordpress

hi guys, and thanks your support. i want to make a list of category that order by date, but i need it look by month and year. for example: August 2010 --posts ----- July 2010 -posts -- December 2009 --posts --- how can i do it ? thanks. ...

Parse and create ISO 8601 Date and time intervals, like PT15M in PHP

A library and webservice I am using, communicates time-intervals in ISO 8601: PnYnMnDTnHnMnS. I want to convert such formats to seconds. And vice versa. Seconds are a lot easier to calculate with. Example interval values are: PT1M or PT60S (1 minute) PT1H, PT60M or PT3600S (1 hour) I need two functions: parse from such values to s...

Cross Language/Cross Platform Date and Time Transfer

What is the best way to transfer Dates and Times across. I am using GWT on the client/browser side and .NET C Sharp on the server and I am using JSON as data-interchange format. I am currently storing all the dates and times on the server as .NET DateTime. Now I have noticed, that if I use the GWT DatePicker or DateBox to pick a date and...

[python] xldate_as_tuple

im not quite sure how to use the following function: xldate_as_tuple for the following data xldate:39274.0 xldate:39839.0 could someone please give me an example on usage of the function for the data? ...

How do I get locale day and month?

I'm using the following function to retrieve date and time: function formatEventTime($time, $type, $locale = 'nb_NO') { setlocale(LC_TIME, $locale); switch($type) { case 'date' : $format = '%d.%m'; break; case 'dm' : $format = '%d. %B'; break; case 'time' : $format = '%H...

Multiple DatePickers in same activity

Hello. I am absolutely new to the Android platform and have been building an application while learning the development process. Currently, I am working on an activity in which i need to deploy 2 date pickers. One is a "Start Date" and the other is an "End date". I have been following the DatePicker tutorial on the android developers p...

How to get day, month, year, hours, minutes, seconds from a UNIX timestamp in Objective C on Iphone

I have been going up and down through all kinds of reference docs and examples over the web but I just can't get how to get what day, month, year, hours, minutes will it be for a given timestamp in Objective C. Any ideas? The code I'm using for the purpose is like this: NSDate *date = [NSDate dateWithTimeIntervalSince1970:128618100...

Javascript: Convert a UTC Date() object to the local timezone

Hey, I have a Date() object that contains a UTC date, which I need converted to the users local timezone. Does anybody know how I could do this? :-) Thanks in advanced! ...

PHP: How to get previous Sunday of a specific date in the past..?

I'm retrieving an entry from a database with a date associated with it. I want to be able to get the previous Sunday and the next Saturday relative to that specific date to populate a jQuery datepicker. I know how to do it with the actual time/date with : strtotime('last Sunday') but I don't know how to do that for a date other tha...

Change system date on Windows using Qt

Hi, What is the most appropriate method to change the system date (on Windows) programmatically using Qt4. I'm using Qt Creator 1.3.1. ...

How do I convert microseconds into a timestamp?

I took this piece from an unencrypted .DAT file: Code: 00 e1 27 17 6f e6 69 c0 Which translates to 63,374,851,375,000,000 in decimal. The units for the number are microseconds. And this huge number cannot bypass the 1st January 1970 00:00:00 format; such a format that most converters use today. So, yes. Is there such a converter tha...

Android get date before 7 days (one week)

HI How to get date before one week from now in android in this format: SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); ex: now 2010-09-19 HH:mm:ss, before one week 2010-09-12 HH:mm:ss Thanks ...

Codeigniter's Timezone Support Helper with daylight savings

Does anyone have Codeigniter's Timezone Support Helper with daylight savings ? Please share... ...

calculating the number of days using strtotime returns wrong result

I have two dates stored in a mysql database (Type = date). For example - Date 1 = 2010-09-20 Date 2 = 2010-10-20 I want to calculate the number of days between these two dates. So have tried this - $number_days = (strtotime($date2) - strtotime($date1) / (60 * 60 * 24)); But this returns 49 How so? -------------------------------...

How do you bind a Date to in stripes using a specific format? MM/dd/yyyy HH:mm:ss

How do you bind a Date to in stripes using a specific format? "MM/dd/yyyy HH:mm:ss" <s:text name="myDateTime" formatPattern="MM/dd/yyyy HH:mm:ss" /> ...

How to format a date in a given format

Hi all I need to format date exactly like this Dienstag 28. September 2010, 15:00 Uhr (German words), what is the best way? Thanks. I guess I have to use date function but how to compose format ...

access 2007 a loop to loop through a particular textbox in one form

my problem is as follows I have a properties form which contains a textfield called DateTo(this textfield contains the data type Date) I would like to loop through the DateTo textfield on each of the properties and prints this out in a message box as wasll as a tenantName textfield and a tenantAddress1 field. After this is complete i w...