Page 1 of 1

How to convert a Date into (Resolved)

Posted: Tue Sep 06, 2011 4:27 pm
by Ark
How could I convert a date (YYYY-MM-DD HH:MM:SS) into miliseconds?! Is there a function? I can't find any on the internet...

Like for example how to convert (2011-09-06 10:10:40) into millisec..

If it's possible please tell me!

Re: How to convert a Date into miliseconds

Posted: Tue Sep 06, 2011 4:34 pm
by Xaleph
Its possible, in all languages lol. What language are you using?

Re: How to convert a Date into miliseconds

Posted: Tue Sep 06, 2011 4:35 pm
by Ark
PHP :)

Re: How to convert a Date into miliseconds

Posted: Tue Sep 06, 2011 4:49 pm
by Xaleph
time(); // get times in seconds

strtotime($str); // will try to create the seconds from the date given in $str

More information:

strtotime();

Re: How to convert a Date into miliseconds

Posted: Tue Sep 06, 2011 6:27 pm
by Ark
Thanks alot Xaleph!