time
-
hey guys, Help me out this pliz, I want to capture the system time and save that in a text file as a numeric value. Do you got any idea of how this can be done?
-
hey guys, Help me out this pliz, I want to capture the system time and save that in a text file as a numeric value. Do you got any idea of how this can be done?
"I love deadlines. I like the whooshing sound they make as they fly by." (DNA)
-
hey guys, Help me out this pliz, I want to capture the system time and save that in a text file as a numeric value. Do you got any idea of how this can be done?
Here:
$file = "output.txt";//file to write to
$f = fopen($file, 'w');//open file for writing
$date = date("G:i:s A");//gets the server time with the format: 24:00:00 AM
fwrite($f, $date);//write to file
fclose($f);//close file after writingcheck the php manual for more formats for the date function
nocturnal
-
Here:
$file = "output.txt";//file to write to
$f = fopen($file, 'w');//open file for writing
$date = date("G:i:s A");//gets the server time with the format: 24:00:00 AM
fwrite($f, $date);//write to file
fclose($f);//close file after writingcheck the php manual for more formats for the date function
nocturnal
Thanks Guys, am getting somewhere. I want also to include centiseconds and i tried this
$date = date("G:i:s:u");
which gives something like this 16:53:10:000000 instead of digits