1. <small id='thbIA'></small><noframes id='thbIA'>

      • <bdo id='thbIA'></bdo><ul id='thbIA'></ul>

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

    2. 从 PHP 中的时间戳创建 DateTime5.3

      时间:2024-04-12
          • <bdo id='0I4oB'></bdo><ul id='0I4oB'></ul>

                <tbody id='0I4oB'></tbody>
            1. <i id='0I4oB'><tr id='0I4oB'><dt id='0I4oB'><q id='0I4oB'><span id='0I4oB'><b id='0I4oB'><form id='0I4oB'><ins id='0I4oB'></ins><ul id='0I4oB'></ul><sub id='0I4oB'></sub></form><legend id='0I4oB'></legend><bdo id='0I4oB'><pre id='0I4oB'><center id='0I4oB'></center></pre></bdo></b><th id='0I4oB'></th></span></q></dt></tr></i><div id='0I4oB'><tfoot id='0I4oB'></tfoot><dl id='0I4oB'><fieldset id='0I4oB'></fieldset></dl></div>

              • <small id='0I4oB'></small><noframes id='0I4oB'>

                <tfoot id='0I4oB'></tfoot>
              • <legend id='0I4oB'><style id='0I4oB'><dir id='0I4oB'><q id='0I4oB'></q></dir></style></legend>
                本文介绍了从 PHP 中的时间戳创建 DateTime5.3的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                您如何在小于 < 的版本中从时间戳创建 DateTime5.3?

                How do you create a DateTime from timestamp in versions less than < 5.3?

                在 5.3 中会是:

                $date = DateTime::createFromFormat('U', $timeStamp);
                

                DateTime 构造函数需要一个字符串,但这对我不起作用

                The DateTime constructor wants a string, but this didn't work for me

                $date = new DateTime("@$timeStamp");
                

                推荐答案

                PHP 5 >= 5.3.0

                PHP 5 >= 5.3.0

                $date = new DateTime();
                $date->setTimestamp($timeStamp);
                

                setTimestamp

                这篇关于从 PHP 中的时间戳创建 DateTime5.3的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:将 Unix 时间戳转换为时区? 下一篇:在午夜获取今天的时间戳?

                相关文章

                • <bdo id='CsRka'></bdo><ul id='CsRka'></ul>
              • <tfoot id='CsRka'></tfoot>

                  <legend id='CsRka'><style id='CsRka'><dir id='CsRka'><q id='CsRka'></q></dir></style></legend>

                    <i id='CsRka'><tr id='CsRka'><dt id='CsRka'><q id='CsRka'><span id='CsRka'><b id='CsRka'><form id='CsRka'><ins id='CsRka'></ins><ul id='CsRka'></ul><sub id='CsRka'></sub></form><legend id='CsRka'></legend><bdo id='CsRka'><pre id='CsRka'><center id='CsRka'></center></pre></bdo></b><th id='CsRka'></th></span></q></dt></tr></i><div id='CsRka'><tfoot id='CsRka'></tfoot><dl id='CsRka'><fieldset id='CsRka'></fieldset></dl></div>
                  1. <small id='CsRka'></small><noframes id='CsRka'>