I have a table with a datetime column. Into this column I have written UTC dates using UTC_TIMESTAMP(). Now, from PHP, I want to get this UTC date as an unix timestamp. How?
I know of the UNIX_TIMESTAMP() function. I'm not sure it's reliable since it uses local time zone and stuff. I just want a pure conversion from the UTC datetime to the number of seconds since 1970...