Re: [PHP] Confusion with UNIX date/time

2002-05-24 Thread Miguel Cruz
On Fri, 24 May 2002 [EMAIL PROTECTED] wrote: > What php functions should I use to convert a UNIX timestamp to a human - > legible format and back again? Human -> Unix: strtotime() Unix -> Human: date() miguel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.

RE: [PHP] Confusion with UNIX date/time

2002-05-24 Thread Jon Haworth
Hi JJ, > What php functions should I use to convert a UNIX timestamp > to a human - legible format and back again? gmdate()/date() and mktime()/gmmktime() (depending on whether you need to calculate them as GMT or not) HTH Jon -- PHP General Mailing List (http://www.php.net/) To unsubscribe