Author |
Message |
XenoMorpH
Hangin' Around

Joined: Jan 23, 2004
Posts: 37
Location: Netherlands
|
Posted:
Fri Aug 25, 2006 3:44 pm |
|
I'm looking for a script which converts a dat+time to a timestamp:
Like:
Friday August 25th 2006 22:44:01 (GMT) converted to 1156545841
I can only find online coverters, but no scripts which can be implanted in my own scripts. Does anyone know how to do this? |
|
|
|
 |
Guardian2003
Site Admin

Joined: Aug 28, 2003
Posts: 6799
Location: Ha Noi, Viet Nam
|
Posted:
Sat Aug 26, 2006 1:53 am |
|
Code:
<?php
$unixtime = time();
echo "unixtime: " . $unixtime . "<br />";
echo "formatted: " . date("F j, Y, g:i a",$unixtime) . "<p />";
$settime = "1104537600";
echo "settime: " . $settime . "<br />";
echo "formatted: " . date("F j, Y, g:i a",$settime) . "<p />";
?>
|
Everything you need is there  |
|
|
|
 |
XenoMorpH

|
Posted:
Sat Aug 26, 2006 2:06 am |
|
Tnx, I'll take a look at it  |
|
|
|
 |
Guardian2003

|
Posted:
Sat Aug 26, 2006 2:09 am |
|
Let me know if it helps  |
|
|
|
 |
XenoMorpH

|
Posted:
Sat Aug 26, 2006 2:16 am |
|
Doesn't this script only convert a timesttamp to date+time and not visaversa |
|
|
|
 |
Guardian2003

|
Posted:
Sat Aug 26, 2006 2:22 am |
|
|
|
 |
XenoMorpH

|
Posted:
Sat Aug 26, 2006 2:27 am |
|
Not yet....I'll take a look at it . Tnx |
|
|
|
 |
Guardian2003

|
Posted:
Sat Aug 26, 2006 2:29 am |
|
If you are storing formatted dates in a DB you can retrieve the timestamp by using a query where in the column list of the mysql query, put UNIX_TIMESTAMP(column name) - just thought I would mention it as you might be working with sql data. |
|
|
|
 |
XenoMorpH

|
Posted:
Sat Aug 26, 2006 2:33 am |
|
Yeah, I'm putting Friday August 25th 2006 22:44:01 (GMT) into a database as a timestamp, didn't know it could be done by using UNIX_TIMESTAMP. How'd u suguest to insert it, I haven't used this before... |
|
|
|
 |
Guardian2003

|
Posted:
Sat Aug 26, 2006 2:56 am |
|
There are a number of ways you can do this depending on your needs so I would recommend a google search for UNIX_TIMESTAMP to ensure it will do what you need.
I have not tested it but something likeCode:
SELECT * FROM table WHERE UNIX_TIMESTAMP(date_field)
| should give you whatever the date/time is stored there but in unixtime format rather than whatever formatting it is in in the table.
Here's another interesting read http://www.4webhelp.net/forums/viewtopic.php?p=13400 |
|
|
|
 |
XenoMorpH

|
Posted:
Sat Aug 26, 2006 2:58 am |
|
Tnx for the information I hope I have enough information to make the script I'm looking for  |
|
|
|
 |
Guardian2003

|
Posted:
Sat Aug 26, 2006 3:06 am |
|
Not a problem, I spent an entire day reading reading up on PHP's ip2long and long2ip functions yesterday just to do one simple thing. |
|
|
|
 |
XenoMorpH

|
Posted:
Sat Aug 26, 2006 6:35 am |
|
I created a little script (it might look ugly, but it works ) to convert
Friday 25th of August 2006 10:41:33 PM GMT to a timestamp
Code:<?php
date_default_timezone_set('GMT');
$p="Friday 25th of August 2006 10:41:33 PM GMT";
$fsd = explode(" ", $p);
echo "".substr($p, 0)."";
echo"<br>";
global $s, $s1;
$monthn = array(
"January" => "01",
"February" => "02",
"March" => "03",
"April" => "04",
"May" => "05",
"June" => "06",
"July" => "07",
"August" => "08",
"September" => "09",
"October" => "10",
"November" => "11",
"December" => "12"
);
$fs = explode(":", $fsd[5]);
$day=substr($fsd[1], 0, 2);
$month=$monthn[$fsd[3]];
$year=$fsd[4];
if($fsd[6]=="PM"){$hour=$fs[0]+12;}
else{
$hour=$fs[0];
}
$min=$fs[1];
$sec=$fs[2];
//convert it to unix timestamp
$date=mktime($hour,$min,$sec,$month,$day,$year);
//caluculate our time from GMT time
echo"$date";
echo"<br>";
print(date("m-d-Y h:i:s A T", $date));
?>
|
Maybe some1 else may find this usefull  |
|
|
|
 |
Guardian2003

|
Posted:
Sat Aug 26, 2006 7:35 am |
|
Excellent thanks for sharing  |
|
|
|
 |
evaders99
Former Moderator in Good Standing

Joined: Apr 30, 2004
Posts: 3221
|
Posted:
Mon Aug 28, 2006 11:18 am |
|
|
|
 |
|