<bdo id='iCzwR'></bdo><ul id='iCzwR'></ul>

<small id='iCzwR'></small><noframes id='iCzwR'>

<i id='iCzwR'><tr id='iCzwR'><dt id='iCzwR'><q id='iCzwR'><span id='iCzwR'><b id='iCzwR'><form id='iCzwR'><ins id='iCzwR'></ins><ul id='iCzwR'></ul><sub id='iCzwR'></sub></form><legend id='iCzwR'></legend><bdo id='iCzwR'><pre id='iCzwR'><center id='iCzwR'></center></pre></bdo></b><th id='iCzwR'></th></span></q></dt></tr></i><div id='iCzwR'><tfoot id='iCzwR'></tfoot><dl id='iCzwR'><fieldset id='iCzwR'></fieldset></dl></div>
<legend id='iCzwR'><style id='iCzwR'><dir id='iCzwR'><q id='iCzwR'></q></dir></style></legend>

  1. <tfoot id='iCzwR'></tfoot>

      通过回显将日期时间/时间戳从 PHP 传递到 Javascript

      时间:2024-04-13
          <tfoot id='uIDQ2'></tfoot>
        • <legend id='uIDQ2'><style id='uIDQ2'><dir id='uIDQ2'><q id='uIDQ2'></q></dir></style></legend>

            <small id='uIDQ2'></small><noframes id='uIDQ2'>

            • <bdo id='uIDQ2'></bdo><ul id='uIDQ2'></ul>
                <tbody id='uIDQ2'></tbody>
            • <i id='uIDQ2'><tr id='uIDQ2'><dt id='uIDQ2'><q id='uIDQ2'><span id='uIDQ2'><b id='uIDQ2'><form id='uIDQ2'><ins id='uIDQ2'></ins><ul id='uIDQ2'></ul><sub id='uIDQ2'></sub></form><legend id='uIDQ2'></legend><bdo id='uIDQ2'><pre id='uIDQ2'><center id='uIDQ2'></center></pre></bdo></b><th id='uIDQ2'></th></span></q></dt></tr></i><div id='uIDQ2'><tfoot id='uIDQ2'></tfoot><dl id='uIDQ2'><fieldset id='uIDQ2'></fieldset></dl></div>
              • 本文介绍了通过回显将日期时间/时间戳从 PHP 传递到 Javascript的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                如何将日期时间/时间戳从 PHP 传递到 javascript.以下似乎不起作用:

                How can I pass a datetime/timestamp from PHP to javascript. The following does not appear to work:

                startLive = new Date(<?php echo date("U", strtotime($start_date)); ?>); 
                

                推荐答案

                试试这个:

                startLive = new Date(<?php echo strtotime($start_date)*1000; ?>);
                

                解释:

                PHP 的 strtotime 函数返回一个 Unix 时间戳(从 1-1-1970 年午夜).

                PHP's strtotime function returns a Unix timestamp (seconds since 1-1-1970 at midnight).

                Javascript的Date()函数可以通过指定毫秒来实例化 自 1970 年 1 月 1 日午夜开始.

                Javascript's Date() function can be instantiated by specifying milliseconds since 1-1-1970 at midnight.

                所以将秒数乘以 1000 得到毫秒数,可以在 Javascript 中使用.

                So multiply seconds by 1000 and you get milliseconds, which you can use in Javascript.

                这篇关于通过回显将日期时间/时间戳从 PHP 传递到 Javascript的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:在 PHP 中减去日期 下一篇:日期时间到 Unix 时间戳

                相关文章

                  <bdo id='yTLTV'></bdo><ul id='yTLTV'></ul>

              • <i id='yTLTV'><tr id='yTLTV'><dt id='yTLTV'><q id='yTLTV'><span id='yTLTV'><b id='yTLTV'><form id='yTLTV'><ins id='yTLTV'></ins><ul id='yTLTV'></ul><sub id='yTLTV'></sub></form><legend id='yTLTV'></legend><bdo id='yTLTV'><pre id='yTLTV'><center id='yTLTV'></center></pre></bdo></b><th id='yTLTV'></th></span></q></dt></tr></i><div id='yTLTV'><tfoot id='yTLTV'></tfoot><dl id='yTLTV'><fieldset id='yTLTV'></fieldset></dl></div>

                <small id='yTLTV'></small><noframes id='yTLTV'>

                    <tfoot id='yTLTV'></tfoot>
                    <legend id='yTLTV'><style id='yTLTV'><dir id='yTLTV'><q id='yTLTV'></q></dir></style></legend>