Re: Best way to convert PG's TIMESTAMPTZ to PHP DATE?

From: Jeff <jam(at)zoidtechnologies(dot)com>
To: Michael Hanna <zen(at)hwcn(dot)org>
Cc: pgsql-php(at)postgresql(dot)org, Jeff <jam(at)zoidtechnologies(dot)com>
Subject: Re: Best way to convert PG's TIMESTAMPTZ to PHP DATE?
Date: 2003-06-30 21:35:01
Message-ID: 20030630213501.GG1614@zoidtechnologies.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

On Mon, Jun 30, 2003 at 05:27:01PM -0400, Jeff wrote:
[..snipped..]
> $lastmodified = $row["datepostedepoch"];
> $lastmodified = datestamp($lastmodified);
> print "{$lastmodified}";
[..snipped..]

EEK! I should have proofread the *entire* message :(

that really should read:

$dateposted = $row["datepostedepoch"];
$dateposted = datestamp($dateposted);
print "{$dateposted}";

obviously that doesn't cover loading $row with the right values, but eros
handles that, too, for the most part. there are working examples in the
tarball of this technique in action.

regards,
Jeff
--
|| Jeff - http://zoidtechnologies.com/
|| GNUPG Fingerprint: A607 0F19 7C75 1305 67E4 BDFF 26BD 606E 3517 2A42

In response to

Browse pgsql-php by date

  From Date Subject
Next Message Jeff 2003-06-30 22:22:59 Re: PHP form Creates Blank DB entries
Previous Message Jeff 2003-06-30 21:27:01 Re: Best way to convert PG's TIMESTAMPTZ to PHP DATE?