strtotime

strtotime

文章 5 浏览 351

在 PHP 中将一周中的某一天转换为 Unix 时间

我试图获取格式如下的日期字符串的 unix 时间: 'second sunday of march 2010' 'first sunday of november 2010' 我的印象是 strtotime 可以处理这样…

如果没有你 2024-08-27 01:21:28 5 0

PHP strtotime(YYYY-mm 最后一天) 一个月关闭错误

我正在 PHP 5.2.12 中尝试以下命令: print (date('Y-m-d', strtotime('2009-12 last day'))) 关于 php.net 手册: date('m/d/y', strtotime('2009-03…

睡美人的小仙女 2024-08-26 23:39:24 6 0

开始和结束时间,分为 1 小时段

我有一个 timestamp 格式的开始和结束时间。我想将它们分成几个时间段,例如 1 小时。 $t1 = strtotime('2010-05-06 12:00:00') $t2 = strtotime('201…

万劫不复 2024-08-26 09:26:06 2 0

在 PHP 中按任意日期搜索数据库

假设您有一个用 PHP 构建的带有 MySQL 数据库后端的消息系统,并且您希望支持使用任意日期字符串搜索消息。 该数据库包括一个消息表,其中“date_crea…

还给你自由 2024-08-26 00:45:41 7 0

php strtotime 问题,给出不正确的值?

我有这个代码: $date = '2010-03-08 8:10:20' $new_date = date('Y-m-d H:i:s', strtotime($date . " +1 month")) echo $new_date 顺便说一句,我已…

烟柳画桥 2024-08-23 20:04:38 7 0

PHP strtotime() 看起来需要欧元格式

我一直在使用 PHP 的 strtotime() 方法来接受表单上的日期字段。我喜欢它的强大功能,因为它接受“明天”、“下周四”或(据说)任何日期表示并将其转…

孤凫 2024-08-20 13:25:49 3 0

如何使用mysql“LIKE”带有时间戳的语法?

我希望允许我的用户在数据库中搜索在某一天提交的行。使用 date() 函数将日期输入数据库中的字段,这很棒,但是当我使用 php strtotime 函数时,日期…

迎风吟唱 2024-08-19 11:41:18 7 0

使用 strtotime 从 DOMDocument 元素转换日期

使用curl 获取HTML 文件后,我正在使用DOMDocument 解析一些数据。代码看起来像这样 $dom = new DOMDocument() @$dom-&gtloadHTML($content) $tables …

通知家属抬走 2024-08-17 18:57:58 3 0

PHP 日期问题 - strtotime 没有输出它应该输出的内容?

我的数据库中有几个空白的 DATETIME 值(0000-00-00 00:00:00)。 每当我通过 strtotime 运行它们时,它们都会返回“1263247058”而不是 FALSE,它应…

往日 2024-08-17 09:27:48 3 0

让 strtotime() 只生成未来的时间

我正在尝试编写一个 PHP 脚本来查找下一次出现的日期(例如 5-1)。但是,如果我将其放入 5-2 的 strtotime() 中,它会显示今年的日期。我只是想让它…

捶死心动 2024-08-15 11:35:27 2 0

将天数添加到特定日期

许多例子都是关于在这一天添加天数。但是,如果我有不同的起始日,该怎么办? 例如(不起作用): $day='2010-01-23' // add 7 days to the date abov…

蓬勃野心 2024-08-15 09:55:42 2 0

为什么 strtotime($lastmoment) 比 time() 大?

以下代码 echo $lastmoment."&ltbr/&gt" echo time() echo "&ltbr/&gt" echo strtotime($lastmoment) 输出: 2009-12-15 17:40:53 1260876829 1260898…

恋你朝朝暮暮 2024-08-15 02:15:14 2 0

php strtotime 因时区字符串而窒息

&lt?php echo "Hello?" $thetime = strtotime("Wed Dec 16 2009 00:00:00 GMT-0500 (Eastern Standard Time)") var_dump($thetime) ?&gt 此代码的计算…

妄断弥空 2024-08-14 11:22:32 3 0

strtotime 的正确参数格式

我一直在我的应用程序中使用 strtotime("$day-$month-$year"),它工作得很酷......但我知道我想仍然以这种格式进行一些日期比较,但我不确定什么是精…

入怼 2024-08-10 00:40:11 6 0

PHP:strtotime() 给了我错误的时间戳

这是我的代码: $testtime = str_replace('.', '-', '2009.07.08 17:01') $timestamp = strtotime($testtime) echo $timestamp . "\n" echo $testtime…

若沐 2024-08-06 23:55:02 3 0
更多

推荐作者

留蓝

文章 0 评论 0

18790681156

文章 0 评论 0

zach7772

文章 0 评论 0

Wini

文章 0 评论 0

ayeshaaroy

文章 0 评论 0

初雪

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文