私は現在、date_default_timezone_set("Europe/Berlin");
のタイムスタンプをunixタイムスタンプとして取得しようとしていますが、UTC unixタイムスタンプになります。特定のタイムゾーンでunixタイムスタンプを取得
// Current time: "2016-04-28 20:37:20"
date_default_timezone_set("Europe/Berlin");
echo date('Y-m-d H:i:s');
// -> "2016-04-28 20:37:20"
echo strtotime(date('Y-m-d H:i:s'));
// -> 1461868642 which is Thu, 28 Apr 2016 18:37:22 GMT
// i need here 1461875840 which is the current time.
タイムスタンプは、定義上はUTCです。 – Mike