How to update timezonedb in PHP (updating timezones info)?

as far as I know the Timezone DB (TDB) is distributed within PHP itself. Because of that the timezone DB becomes obsolete after some time and you should either update PHP or the TDB to reflect the changes in TDB.

There’s a PECL extension which releases new TDB packages which you can download and install and use them in your old PHP installations.

I’m not aware there’s a way to update TDB directly in PHP. The PECL extension was created to target this issue.

Leave a Comment