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

    1. <legend id='mxJi3'><style id='mxJi3'><dir id='mxJi3'><q id='mxJi3'></q></dir></style></legend>
      <tfoot id='mxJi3'></tfoot>
    2. 使用 PHP 格式化 SQL 时间戳

      时间:2024-04-13
    3. <i id='aBg8B'><tr id='aBg8B'><dt id='aBg8B'><q id='aBg8B'><span id='aBg8B'><b id='aBg8B'><form id='aBg8B'><ins id='aBg8B'></ins><ul id='aBg8B'></ul><sub id='aBg8B'></sub></form><legend id='aBg8B'></legend><bdo id='aBg8B'><pre id='aBg8B'><center id='aBg8B'></center></pre></bdo></b><th id='aBg8B'></th></span></q></dt></tr></i><div id='aBg8B'><tfoot id='aBg8B'></tfoot><dl id='aBg8B'><fieldset id='aBg8B'></fieldset></dl></div>
          <tbody id='aBg8B'></tbody>
      • <legend id='aBg8B'><style id='aBg8B'><dir id='aBg8B'><q id='aBg8B'></q></dir></style></legend>

          <tfoot id='aBg8B'></tfoot>

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

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

                本文介绍了使用 PHP 格式化 SQL 时间戳的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我有一个带有时间戳字段的 mySQL 数据库.它目前只有一个条目,而我正在测试,它是

                I have a mySQL database with a timestamp field. It currently only has one entry while I'm testing, it is

                2010-02-20 13:14:09
                

                我正在从数据库中提取并使用

                I am pulling from the database and using

                echo date("m-d-Y",$r['newsDate'])
                

                我的最终结果显示为

                12-31-69
                

                有人知道为什么吗?

                忽略那个编辑...notepad++ 的 FTP 插件超时,不幸的是,它在无法同步时不会显示错误.

                editedit: disregard that edit... the FTP addon for notepad++ timed out and unfortunately doesn't display an error when it can't synch.

                推荐答案

                date 函数需要 UNIX 时间戳 作为其第二个参数 -- 这意味着您必须将从数据库获取的日期转换为 UNIX 时间戳,这可以使用 strtotime :

                The date function expects an UNIX timestamp as its second parameter -- which means you have to convert the date you get from the DB to an UNIX timestamp, which can be done using strtotime :

                $db = '2010-02-20 13:14:09';
                $timestamp = strtotime($db);
                echo date("m-d-Y", $timestamp);
                

                你会得到:

                02-20-2010
                


                您将 '2010-02-20 13:14:09' 字符串传递给 date 函数;该字符串不是有效的 UNIX 时间戳.


                You were passing the '2010-02-20 13:14:09' string to the date function ; that string is not a valid UNIX Timestamp.

                '12-31-69' 在您的语言环境中可能是 1970-01-011970-01-01 是 Epoch -- 对应于 0 UNIX Timestamp 的日期.

                '12-31-69' is probably 1970-01-01, in your locale ; and 1970-01-01 is the Epoch -- the date that corresponds to the 0 UNIX Timestamp.

                这篇关于使用 PHP 格式化 SQL 时间戳的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:为什么时间戳限制为 2038? 下一篇:如何使用 PHP 将 MySQL 时间转换为 UNIX 时间戳?

                相关文章

                  • <bdo id='7J2yf'></bdo><ul id='7J2yf'></ul>

                  <legend id='7J2yf'><style id='7J2yf'><dir id='7J2yf'><q id='7J2yf'></q></dir></style></legend>

                1. <tfoot id='7J2yf'></tfoot>

                  1. <small id='7J2yf'></small><noframes id='7J2yf'>

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