473,385 Members | 2,162 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

time

Is there a standard library (C or C++) to convert a time in seconds since
Jan, 1st 1970 into a formatted datetime string ?
Jul 22 '05 #1
5 2035
Flzw wrote:
Is there a standard library (C or C++) to convert a time in seconds since
Jan, 1st 1970 into a formatted datetime string ?


No. Standard calendar time doesn't necessarily represent the number of
seconds since Jan 1st, 1970. However, there are standard functions to
convert standard calendar time value into a string. See 'asctime'.

What FM do you R (as in RTFM) on the regular basis that doesn't describe
'asctime' among other standard time functions?
Jul 22 '05 #2
Victor Bazarov wrote:
Flzw wrote:
Is there a standard library (C or C++) to convert a time in seconds
since Jan, 1st 1970 into a formatted datetime string ?


No. Standard calendar time doesn't necessarily represent the number of
seconds since Jan 1st, 1970. However, there are standard functions to
convert standard calendar time value into a string. See 'asctime'.

What FM do you R (as in RTFM) on the regular basis that doesn't describe
'asctime' among other standard time functions?


Not everyone learns from FMs. Even so, I don't know if they all have
adequate indexes. And even so, asctime doesn't answer the OP's question.

FWIW, the relevant man page on my (Mac OS X) box gives

"The functions ctime(), gmtime() and localtime() all take as an argument
a time value representing the time in seconds since the Epoch (00:00:00
UTC, January 1, 1970; see time(3))."

Does this mean that it's describing the local implementation rather than
the standard? It also mentions that asctime works with struct tm, not
with standard calendar time values; the equivalent function for working
with the latter is ctime.

Moreover, the OP might be wanting some control over the format, or
(which would be OT here) to use the OS-configured format. I for one
would certainly choose either over the peculiar Www Mmm dd hh:mm:ss yyyy
format I'm made to wonder where came from.

Stewart.

--
My e-mail is valid but not my primary mailbox. Please keep replies on
the 'group where everyone may benefit.
Jul 22 '05 #3
Stewart Gordon wrote:
Victor Bazarov wrote:
Flzw wrote:
Is there a standard library (C or C++) to convert a time in seconds
since Jan, 1st 1970 into a formatted datetime string ?

No. Standard calendar time doesn't necessarily represent the number of
seconds since Jan 1st, 1970. However, there are standard functions to
convert standard calendar time value into a string. See 'asctime'.

What FM do you R (as in RTFM) on the regular basis that doesn't describe
'asctime' among other standard time functions?

Not everyone learns from FMs. Even so, I don't know if they all have
adequate indexes. And even so, asctime doesn't answer the OP's question.


It doesn't?
FWIW, the relevant man page on my (Mac OS X) box gives

"The functions ctime(), gmtime() and localtime() all take as an argument
a time value representing the time in seconds since the Epoch (00:00:00
UTC, January 1, 1970; see time(3))."

Does this mean that it's describing the local implementation rather than
the standard?
Yes, unfortunately. I say 'unfortunately' because it fails to admit that.
It also mentions that asctime works with struct tm, not
with standard calendar time values; the equivalent function for working
with the latter is ctime.
Yes. How did you find that out? Can't be from TFM...
Moreover, the OP might be wanting some control over the format, or
(which would be OT here) to use the OS-configured format. I for one
would certainly choose either over the peculiar Www Mmm dd hh:mm:ss yyyy
format I'm made to wonder where came from.


Then the OP's choice should be 'strftime'. And that, too, can be seen and
learned _about_ from TFM.

V
Jul 22 '05 #4
Victor Bazarov wrote:
Stewart Gordon wrote:
Victor Bazarov wrote:
Flzw wrote:

Is there a standard library (C or C++) to convert a time in seconds
since Jan, 1st 1970 into a formatted datetime string ?
<snip> Not everyone learns from FMs. Even so, I don't know if they all have
adequate indexes. And even so, asctime doesn't answer the OP's question.


It doesn't?


Yes. Read it again. The OP asked specifically how to translate times
given in seconds since 1 Jan 1970.

<snip>
It also mentions that asctime works with struct tm, not
with standard calendar time values; the equivalent function for
working with the latter is ctime.


Yes. How did you find that out? Can't be from TFM...


As I said, from the man page. Do you have access to any flavour of
Unix? Type

man asctime

at its command prompt. Alternatively, look here:

http://www.die.net/doc/linux/man/man3/asctime.3.html

(One page describes asctime, ctime, gmtime, localtime and mktime, so it
doesn't really matter by which of those names you try to access the page.)
Moreover, the OP might be wanting some control over the format, or
(which would be OT here) to use the OS-configured format. I for one
would certainly choose either over the peculiar Www Mmm dd hh:mm:ss
yyyy format I'm made to wonder where came from.


Then the OP's choice should be 'strftime'. And that, too, can be seen and
learned _about_ from TFM.


Maybe it's easy to find stuff in _T_FM, but not so easy to find stuff in
the OP's particular FM. Yes, I know there's also stuff to be found on
the WWW....

Stewart.

--
My e-mail is valid but not my primary mailbox. Please keep replies on
the 'group where everyone may benefit.
Jul 22 '05 #5
Stewart Gordon wrote:
Victor Bazarov wrote:
Stewart Gordon wrote:
Victor Bazarov wrote:

Flzw wrote:

> Is there a standard library (C or C++) to convert a time in seconds
> since Jan, 1st 1970 into a formatted datetime string ?
<snip>
Not everyone learns from FMs. Even so, I don't know if they all have
adequate indexes. And even so, asctime doesn't answer the OP's
question.

It doesn't?

Yes. Read it again. The OP asked specifically how to translate times
given in seconds since 1 Jan 1970.


Well, read my reply again. There is NO STANDARD FUNCTION to do that. My
suggestion to RTFM was so that the OP would try to figure out which of
the *Standard* functions would suit him, or, alternatively, which of the
implementation-specific ones would. I can't even guess what platform/OS
the OP is using. Can you?
<snip>
It also mentions that asctime works with struct tm, not
with standard calendar time values; the equivalent function for
working with the latter is ctime.

Yes. How did you find that out? Can't be from TFM...

As I said, from the man page. Do you have access to any flavour of
Unix? Type

man asctime


What is "man" here? Can't be "MANual", can it? Nah...

[..]
Moreover, the OP might be wanting some control over the format, or
(which would be OT here) to use the OS-configured format. I for one
would certainly choose either over the peculiar Www Mmm dd hh:mm:ss
yyyy format I'm made to wonder where came from.

Then the OP's choice should be 'strftime'. And that, too, can be seen
and
learned _about_ from TFM.

Maybe it's easy to find stuff in _T_FM, but not so easy to find stuff in
the OP's particular FM.


How the F do *you* know that? Are you the OP?

Never mind.

V
Jul 22 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: Bart Nessux | last post by:
am I doing this wrong: print (time.time() / 60) / 60 #time.time has been running for many hours if time.time() was (21600/60) then that would equal 360/60 which would be 6, but I'm not getting...
5
by: David Stockwell | last post by:
I'm sure this has been asked before, but I wasn't able to find it. First off I know u can't change a tuple but if I wanted to increment a time tuple by one day what is the standard method to do...
6
by: David Graham | last post by:
Hi I have asked this question in alt.php as the time() function as used in setcookie belongs to php - or does it belong equally in the javascript camp - bit confused about that. Anyway, can anyone...
3
by: Szabolcs Nagy | last post by:
I have to measure the time of a while loop, but with time.clock i always get 0.0s, although python manual sais: "this is the function to use for benchmarking Python or timing algorithms" So i...
6
by: Rebecca Smith | last post by:
Today’s question involves two time text boxes each set to a different time zone. Initially txtCurrentTime will be set to Pacific Time or system time. This will change with system time as we travel...
3
by: luscus | last post by:
Thanks for all the responses on my first question. Unfortunately the answers I was given were too complicated for my small brain , and neophite condition to understand. So if you could talk down to...
3
by: cj | last post by:
If I want to check to see if it's after "11:36 pm" what would I write? I'm sure it's easy but I'm getting tired of having to work with dates and times. Sometimes I just want time or date. And...
1
by: davelist | last post by:
I'm guessing there is an easy way to do this but I keep going around in circles in the documentation. I have a time stamp that looks like this (corresponding to UTC time): start_time =...
2
by: Roseanne | last post by:
We are experiencing very slow response time in our web app. We run IIS 6 - windows 2003. I ran iisstate. Here's what I got. Any ideas?? Opened log file 'F:\iisstate\output\IISState-812.log'...
9
by: Ron Adam | last post by:
I'm having some cross platform issues with timing loops. It seems time.time is better for some computers/platforms and time.clock others, but it's not always clear which, so I came up with the...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.