php strtotime常见用法

strtotime() 函数在 PHP 中用于将日期时间字符串转换为 UNIX 时间戳,它可以解析包括英文描述的日期时间字符串。以下是 strtotime() 函数的一些常见用法:

日期时间字符串转换为 UNIX 时间戳:

php 复制代码
$timestamp = strtotime('2024-04-20 10:30:00');

相对时间转换为 UNIX 时间戳:

php 复制代码
// 当前时间的前一天
$timestamp = strtotime('-1 day');
// 当前时间的后一周
$timestamp = strtotime('+1 week');

解析英文日期时间描述:

php 复制代码
// 下周五
$timestamp = strtotime('next Friday');
// 2小时后
$timestamp = strtotime('+2 hours');
// 上个月的第一天
$timestamp = strtotime('first day of last month');

解析相对日期时间描述:

php 复制代码
// 3天后的下午3点
$timestamp = strtotime('3 days 15:00');
// 明年的1月1日
$timestamp = strtotime('next year January 1');

指定基准时间进行解析:

php 复制代码
// 在指定时间基础上加上3天
$timestamp = strtotime('+3 days', $baseTimestamp);

这些都是 strtotime() 函数常见的用法,可以根据具体需求选择合适的方式来进行日期时间字符串的解析。

相关推荐
寰宇软件2 小时前
PHP同城配送小程序
微信小程序·vue·php·uniapp
寰宇软件4 小时前
PHP企业IM客服系统
微信小程序·vue·php·uniapp
嵌入式小强工作室7 小时前
esp32实现联网控制
开发语言·php
希望奇迹很安静8 小时前
[极客大挑战 2019]PHP
开发语言·学习·web安全·php·ctf·buuctf
很酷的站长11 小时前
怎么创建一个能在线测试php的html5网页?
开发语言·php·html5
Aimin202212 小时前
Debian 上安装PHP
linux·debian·php
vortex512 小时前
正则表达式基础与应用
正则表达式·php
互联网动态分析18 小时前
PHP:从入门到进阶的全方位指南
php
YUJIANYUE20 小时前
PHP版接口调试工具(自定义GET|POST|COOKIE|HEADER|User Agent|来路Referer)
android·开发语言·php
新知图书20 小时前
ThinkPHP 8的多对多关联
php·thinkphp