Subject Re: ADOdb update for PHP5RC3
Author abies12
--- In firebird-php@yahoogroups.com, Lester Caine <lester@l...> wrote:
> if (function_exists('ibase_timefmt')) {
> ibase_timefmt($this->ibase_timefmt);
> } else {
> ini_set("ibase.timestampformat",
> $this->ibase_timefmt);
> }

There's no need to check for base_timefmt() and use it instead of
ini_set() as they do exactly the same. (Well, actually, using
ini_set() will be even one malloc()/free() less)

--
Ard