如何将PHP日期时间字符串转换为毫秒?

时间:2016-03-14 14:37:57

标签: php

<?php 
        date_default_timezone_set("Europe/London");
        $info = getdate();
        $date = $info['mday'];
        $month = $info['mon'];
        $year = $info['year'];
        $hour = $info['hours'];
        $min = $info['minutes'];
        $sec = $info['seconds'];
    ?>

使用上面我计划将其连接成一串这样的字符串:

"09/23/2000 9:45:00"

我在PHP中需要的是将上面的字符串转换为毫秒来传递给JavaScript函数。

0 个答案:

没有答案