Re: Handling timestampz datatype

Поиск
Список
Период
Сортировка
От David U.
Тема Re: Handling timestampz datatype
Дата
Msg-id aqbo4o$cqp$1@main.gmane.org
обсуждение исходный текст
Ответ на Handling timestampz datatype  ("David Busby" <busby@pnts.com>)
Список pgsql-php
David Busby wrote:
> List,
>     How are you all dealing with the timestampz data type in your
> PG/PHP applications?  I cannot seem to find the reliable way to deal
> with them (for display purposes).  My timestampz column comes into my
> PHP script as a text string, I have to convert (using strtotime())
> first then use strftime() to format it.  Any ideas on the easy way to
> do this?

It's a bit annoying, but I find this to work well:

date("F j, Y, g:i a",strtotime('00'.$row['event_date']))

Obviously you can use whatever date scheme you want or strfttime like you
said.
(also, $row['event_date'] is my timestampz field, of course)

I don't know of an easier way although it is probably possible to get the
date out in epoch time direct from the SQL using the EPOCH keyword and some
of the date functions.

-davidu



В списке pgsql-php по дате отправления:

Предыдущее
От: "Rommel B. Abaya"
Дата:
Сообщение: Re: Column names
Следующее
От: Joseph Syjuco
Дата:
Сообщение: [Fwd: [ph-linux-newbie] help on cron]