将Javascript Date()转换为PHP Unix时间戳

时间:2015-12-29 20:19:01

标签: javascript php

我收到一个日期,它使用javascript的date()函数来生成这样的时间戳。

1451351941210

但是我的应用程序是在php中,我想将该值转换为如下所示的unix时间戳

1451419198

我试过除以1000,但功能回归18年而不是18秒。

以下是代码

<?php

// Get javascript date() value
$date = 1451351941210;

// divide by 100 and round
$start_time = round($date/1000);

// run through function and echo
echo time_elapsed_string('@'. $start_time);

// Time function
function time_elapsed_string($datetime, $full = false) {
    $now = new DateTime;
    $ago = new DateTime($datetime);
    $diff = $now->diff($ago);

    $diff->w = floor($diff->d / 7);
    $diff->d -= $diff->w * 7;

    $string = array(
        'y' => 'year',
        'm' => 'month',
        'w' => 'week',
        'd' => 'day',
        'h' => 'hour',
        'i' => 'minute',
        's' => 'second',
    );
    foreach ($string as $k => &$v) {
        if ($diff->$k) {
            $v = $diff->$k . ' ' . $v . ($diff->$k > 1 ? 's' : '');
        } else {
            unset($string[$k]);
        }
    }

    if (!$full) $string = array_slice($string, 0, 1);
    return $string ? implode(', ', $string) . ' ago' : 'just now';
}

有什么可以直接将date()转换为unix时间戳吗?

我想使用PHP,而不是javascript

我使用的功能取自

Converting timestamp to time ago in PHP e.g 1 day ago, 2 days ago...

3 个答案:

答案 0 :(得分:2)

你是否在javascript上尝试过这个?

Math.floor(Date.now() / 1000);

答案 1 :(得分:1)

$date = (int) substr($date, 0, strlen($date) - 3);

答案 2 :(得分:1)

要将当前日期和时间转换为UNIX时间戳,请执行以下操作:

var ts = Math.round((new Date()).getTime() / 1000);

getTime()从UNIX纪元返回毫秒,因此将其除以1000以获得秒表示。它使用Math.round()进行舍入,使其成为整数。 &#34; ts&#34;变量现在具有与用户的Web浏览器相关的当前日期和时间的UNIX时间戳。