Subject | Re: TIME FORMAT |
---|---|
Author | David Richmond |
Post date | 2007-08-07T06:11:03Z |
--- luluzynha13 wrote:
translates that to string.
installations and always use strtotime() function to convert the
date/time string to PHP internal time value and then use date()
function to format it as I want. Example:
echo date('d.m.Y H:i:s', strtotime($row[0]));
This is cleary a PHP setting issue.
Dave
> I'd like to know if there is any kind of configuration parameter forThere isn't any. Firebird sends time data as a number (double) and PHP
> TIME variables display in the firebird database.
translates that to string.
> values (Problems with the php/firebird I already found out a phpI never trust the server as my apps. can run on various PHP
> parameter that configures the TIME format display)
installations and always use strtotime() function to convert the
date/time string to PHP internal time value and then use date()
function to format it as I want. Example:
echo date('d.m.Y H:i:s', strtotime($row[0]));
> But I also hadEMS has it's own setting.
> problems using EMS. EMS is showing me data information in the AM/PM
> format instead of using a 24h format which is the way it was
> behaving before the new installation.
This is cleary a PHP setting issue.
Dave