2
votes
3answers
45 views

What format of a timestamp is this?

I have to make some changes on an wordpress plugin. The plugin gives back this timestamp format: 1364495828.1500 What's the name of this format and how can I change it to DD/MM/YYYY - HH:MM??? I am ...
0
votes
1answer
40 views

Check if line is a timestamp in Python

I have a script that runs every 30 minutes on my server, and when it's done it writes a timestamp to the last line of the file. It does this to about 20+ files in one directory. I'm trying to write a ...
-1
votes
2answers
53 views

Using time-stamp to retrieve the date and time separately. (mysql)

Is timestamp in mysql able to retrieve the date and time separately?
2
votes
2answers
38 views

Timestamp with Custom Minute

I would like to make custom timestamps. I need to round the minute of the time to 00 or 30. I made already a PHP code for this: if (date("i") >= '15' && date("i") < '45') { $minute ...
0
votes
0answers
19 views

Creating a time log in C

I need to create a simple program that takes whatever the user put into standard input (hopefully their name) and puts it with a time stamp using time(NULL) into a log.txt file. I can do the printf ...
1
vote
1answer
58 views

Unix timestamp to FAT timestamp

Im trying to convert a time structure to a FAT timestamp. My code looks like: unsigned long Fat(tm_struct pTime) { unsigned long FatTime = 0; FatTime |= (pTime.seconds / 2) >> 1; ...
1
vote
2answers
204 views

How to combine date and time into a timestamp in db2?

In a db2 database I have a DATE column and a TIME column, how can you combine these into a single TIMESTAMP?
3
votes
1answer
64 views

How to make dynamic timestamp in ffpmeg, not static?

I am using ffmpeg (windows pc) with my webcam to record what happens when i'm out of home. It works fine, but i can't make dynamic clock and date on screen. I have tried -vf ...
0
votes
1answer
134 views

PHP - Date / Time difference using only working hours [duplicate]

I am trying to create a function that will work out the time difference between 2 times but only includes WORKING HOURS. This is for a project which tracks the time it takes for a job to be completed. ...
1
vote
2answers
144 views

PHP - Exclude all non-business hours / days from time difference

I have a table which shows the time since a job was raised. // These are unix epoch times... $raised = 1360947684; $now = 1361192598; $difference = 244914; $difference needs to exclude any time ...
1
vote
2answers
92 views

write a query that converts a timestamp to a date and add hours

I hope someone can help me with this. My knowledge of sql and programming is pretty rudimentary. I've written a query that looks like this. SELECT FROM_UNIXTIME(EventStartDate) ...
4
votes
1answer
97 views

Is the current time between two given times?

I'm trying to calculate if the current time is within the opening hours of a restaurant. This question has been asked a lot on Stackoverflow, but I haven't found one that can account for the ...
-2
votes
2answers
84 views

I want to show fix time and calculate remaining [closed]

i want to show 2 hours as fix time and calculate remaining time from those 2 hours to show to the students that this is your remaining time
0
votes
1answer
74 views

how can i make time script in php? [duplicate]

Possible Duplicate: PHP: producing relative date/time from timestamps i search so much on internet but i didn't find how can i create time counter by using php.Exactly i want to this if i ...
0
votes
2answers
236 views

Java: Convert long time of day to timestamp

I have a long value that represents the time of day in milliseconds since midnight that day. i.e. 00:00:01 would be 1000. I want to convert this to a long timestamp since the epoch - using the ...
0
votes
2answers
158 views

How to convert datetime in Pacific timezone to UTC timestamp?

I'm having trouble converting a datetime into a timestamp in UTC. TS_FMT = '%Y-%m-%d %H:%M:%S' t = time.strptime('2012-11-20 00:00:00', TS_FMT) dt = datetime.datetime(t.tm_year, t.tm_mon, t.tm_mday, ...
1
vote
3answers
60 views

I'm having trouble figuring out what this time stamp means

I have been trying to figure out what kind of timestamp takes this form: 2012-07-02T21:27:41.229431 It seems like it is some sort of unix time, but I can't figure out what the 6 digits after the ...
0
votes
2answers
223 views

How to set the string to date dataType in java

I get date from the db, which contains date along with the timestamp, In the UI it displays both the date & timestanp, But I want to display only the date (yyyy-MM-dd). I have done the changes but ...
0
votes
1answer
259 views

Get unix timestamp from mysql database with offset applied

I have the offset in seconds to UTC, all timestamps stored on the database are in UTC, how to apply the offset during selection queries, mysql_query("SELECT * FROM table WHERE ...
1
vote
4answers
99 views

how to convert a number into a timestamp?

how would I use php to convert a number into a timestamp (specifically minutes)? i'm using timestamps in my database, for example 00:01:30 and 00:00:30 but the people i'm writing this for have the ...
2
votes
4answers
422 views

why is microsecond timestamp is repetetive using (a private) gettimeoftheday() i.e. epoch

I am printing microseconds continuously using gettimeofday(). As given in program output you can see that the time is not updated microsecond interval rather its repetitive for certain samples then ...
0
votes
2answers
528 views

Getting a timestamp for today at midnight?

How would I go about getting a timestamp in php for today at midnight. Say it's monday 5PM and I want the Timestamp for Monday(today) at midnight(12 am) which already has happened. Thank you
0
votes
2answers
924 views

Node.JS - Converting UNIX Timestamp to Time - timezones shift

I have a function, that converts timestamp to time: function convertUnixTimeToTime(UNIX_timestamp) { var a = new Date(UNIX_timestamp); var fin_hour = String(a.getHours()) if ...
1
vote
2answers
768 views

Convert VARCHAR timestamp to TIMESTAMP in MySQL?

I have a time stamp of the form "17:16:28 Sep 13, 2011 PDT" in a MySQL database. The type of the field in the database is VARCHAR. I would like to convert this VARCHAR to a field of type TIMESTAMP in ...
0
votes
2answers
77 views

How to convert “2012-10-16T14:46:33+00:00” into Unix Timestamp in PHP?

How do you convert a string in the format 2012-10-15T13:16:13+00:00 into a Unix Timestamp in PHP?
0
votes
0answers
71 views

Dispaying timestamp in Central time using JavaScript

I have the following code to display a timestamp using node: function timestamp() { var dt = new Date(); var hours = dt.getHours(); var minutes = dt.getMinutes(); var seconds = ...
1
vote
1answer
217 views

Negative timestamp — does it makes sense in PHP? [closed]

According to the manual, PHP uses the Unix Epoch (00:00:00 UTC on 1 January 1970) to generate its timestamps. Given this definition, I believe that it is reasonable to work with negative timestamps, ...
1
vote
1answer
456 views

Postgresql - merge time and date of csv on import to timestamp

I'm trying to import data from a csv file into postgresql, unfortunately it's not perfectly formatted. Example: DATE,TIME,NUMERIC,NUMERIC,NUMERIC,NUMERIC,INTEGER I want to import the data into a ...
2
votes
2answers
132 views

Get a server-safe timestamp in ActionScript 3

I would like to get the current Date/Time in actionscript 3, and I want to avoid the Date class since the system time can be easily manipulated by the user. Can I access a server and get a timestamp? ...
2
votes
2answers
391 views

PostgreSQL round timestamp seconds down for a postgres pre-created date with milliseconds

I have a query that unfortunately has to compare 2 timestamps. One timestamp is given to the DB from the PHP date() function, stored as timestamp without time zone, so there's no milliseconds added to ...
0
votes
3answers
137 views

PHP - Accurate Unix Timestamp [closed]

I'm trying to create an accurate Unix timestamp to assign to a variable, based on different time periods. Any idea how these timestamps periods can be calculated?
-1
votes
3answers
125 views

convert a time-string like “11:00” or “14:00” to decimal time like 1.75? [closed]

I found this function on the php-manual "date". <?php // Converts a unix timestamp to iCal format (UTC) - if no timezone is // specified then it presumes the uStamp is already in UTC format. // ...
0
votes
1answer
118 views

What does this timestamp mean

So I got a timestamp from Google API in the following format: 2012-08-21T20:19:08.452Z My question is...What is that .452 preceding the Z? I believe Z denotes Zulu time aka UTC, but what is that ...
2
votes
3answers
191 views

Convert DateTime string to timestap in javascript

if dd = "2012-08-20 01:16:00"; converting this date to time-stamp (as in the following code) var t = new Date(dd).getTime(); http://jsfiddle.net/userdude/DHxwR/ the result t = NaN why ?
1
vote
4answers
81 views

Note down time when a process stops

I have started processing of several files. I noted down the (clock) time when the processing started. It is taking too long to finish and I want to go to sleep, but I want to note down the time when ...
0
votes
1answer
991 views

mysql query - insert data unix_timestamp ( now ( ) ) issue

I have an INT (11) column for storing the current timestamp in seconds. The query looks like: INSERT INTO `abc` (id, timestamp) VALUES ('', UNIX_TIMESTAMP ( NOW () ) ) I don't know why, but the ...
1
vote
4answers
350 views

PHP: Why converting a date string to a timestamp then back to a date string doesn't work?

My code $time = "Tuesday, 26 June 2012"; //str_replace(',','',$time);<--this also doesn't work. $a = strptime($time, "%l, %j %F %Y"); $stmp = ...
-1
votes
1answer
71 views

Generate timestamp for certain date next month

I need to generate a timestamp for an exact date in the next month. I want to generate the timestamp for the 10th of the next month automatically. I tried playing around with strtotime but couldn't ...
0
votes
3answers
400 views

Timestamp format adding 17 hours

The problem is the SimpleDateFormat seems to be adding 17 hours to the actual timestamp. This should be something really simple. I'm not sure what I'm doing wrong. I have a method that will convert a ...
5
votes
3answers
171 views

What time format is this and how do I convert it to a standardized dd/mm/yyyy date?

I'm using the YouTube/Google API and for the upload date for a particular video a time/date formatted in the following format is returned: 2012-05-16T17:15:29.000Z I'm not sure what format this is, ...
0
votes
3answers
152 views

How do I format this time/date in PHP?

When I make projects on my website, I've saved the time and date that I made them on in MySQL as '2012-02-27 12:32:36' format. How can I get this to display as: "February 27, 2012 12:32 p.m."? I've ...
2
votes
1answer
285 views

Convert Long Int Timestamp to Date/Time

I use connect the sqlite3 of chrome 'History' file for analysis. But there are data for last_visit_time, which is timestamp, but I don't know how to change it to real time. I test like this: ...
2
votes
1answer
280 views

Converting timestamp on server gives different result in PHP and MySQL

Consider this. On my server, I convert a (UTC/GMT) timestring like this: strtotime('Fri Feb 18 21:08:38 +0000 2011') My server returns 1298063318 This is correct, since all unix timestamp ...
1
vote
4answers
81 views

How can I identify the time after user update?

How can I identify the time passed after an user updated his account in my MySQL database? I have a timestamp in my MySQL table (to store user update time) so now how can I identify the time passed ...
0
votes
1answer
7k views

Getting time and date from timestamp with php

in my database I have a time stamp column...which reflects a format like this: 2012-04-02 02:57:54 However I would like to separate them up into $date and $time. after some research through the php ...
-2
votes
2answers
5k views

php how to get timestamp using DateTime()

I want to get current EST timestamp. I'm using DateTime() <?php $date = new DateTime(); $date->setTimezone(new DateTimeZone('America/New_York')); echo $date->getTimestamp(); ?> When ...
0
votes
1answer
196 views

How to find out the days and minutes between 2 timestamps

I am trying to find out the years, months, days and minutes between 2 timestamps. I have used the following code, but it is not working: $diff = time()-$res['asked_on']; $years = floor($diff / ...
1
vote
1answer
168 views

advice with php date and timestamps

We have a battle system where people can pick a match time to challenge another player. To create a match the user needs to pick a date. Currently a user picks the day, hour, minute, and pm/am from a ...
2
votes
3answers
2k views

How to convert a time to javascript-timestamps using javascrit or jquery?

How I will convert this time 11:34 to javascript timestamps. Any javascript functionality available for that. I am trying to create a floting graph for that I am using Flot library. In my graph time ...
0
votes
2answers
81 views

PHP: Convert monday in this timezone to UTC

I am building an App that fetches all entries a user has made "this week" (in their timezone). I store all entry times in the database as UTC/GMT time using: gmdate('U') My problem arises when I ...

1 2 3