WeBWorK Main Forum

Answer logs across students

Re: Answer logs across students

by Gavin LaRose -
Number of replies: 0
The time stamp field is a Unix timestamp, measuring "the number of non-leap seconds since whatever time the system considers to be the epoch," which on most systems is 00:00:00 UTC, January 1, 1970.

To wit:
  $ perl -e 'print  scalar(localtime("1345351219")),"\n";'
  Sun Aug 19 00:40:19 2012

Gavin