What timezone does MySQL TIMESTAMP columns use ON UPDATE?

mysql, php, time, timestamp, timezone

Solution

Depends on your MySQL configuration variables, see MySQL Server Time Zone Support.

Problem

Does it use the server timezone or UNIX_TIMESTAMP (UTC) ? And how do I get the current time in PHP, in the same timezone as MySQL's TIMESTAMP columns?

Original source