首页 > 后端开发 > php教程 > 如何使用 strtotime() 和 date() 调整 PHP 中的时间格式?

如何使用 strtotime() 和 date() 调整 PHP 中的时间格式?

Linda Hamilton
发布: 2024-10-18 12:10:04
原创
633 人浏览过

How to Adjust Time Formats in PHP Using strtotime() and date()?

在 PHP 中调整格式为 H:i 的时间 30 分钟

您提到在调整格式为 H:i 的时间值时遇到困难PHP。具体来说,您尝试创建 $startTime 和 $endTime,将 $time 在每个方向上偏移 30 分钟,但没有成功。

要解决此问题,我们将采用不同的方法,使用 strtotime() 和 date( )。下面是更正后的代码:

<code class="php">$time = strtotime('10:00'); // Convert the time string to a Unix timestamp
$startTime = date("H:i", strtotime('-30 minutes', $time)); // Subtract 30 minutes from the timestamp
$endTime = date("H:i", strtotime('+30 minutes', $time)); // Add 30 minutes to the timestamp</code>
登录后复制

现在,使用此代码,当您将 '10:00' 作为 $time 传递时,您将正确获得:

$startTime = 09:30
$endTime = 11:30
登录后复制

以上是如何使用 strtotime() 和 date() 调整 PHP 中的时间格式?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板