标题:php 有关时间的函数的用法
取消只看楼主
zhimengren
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2012-11-7
 问题点数:0 回复次数:0 
php 有关时间的函数的用法
用PHP打印出前一天的时间格式echo date('Y-m-d H:i:s', strtotime('-1 day'));
在做网站项目时(http://),用的比较多时间关联,现在整理一些出来大家分享:
strtotime -- 将任何英文文本的日期时间描述解析为 Unix 时间戳
例子 1. strtotime() 例子
<?php
echo strtotime("now"), "\n";
echo strtotime("10 September 2000"), "\n";
echo strtotime("+1 day"), "\n";
echo strtotime("+1 week"), "\n";
echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n";
echo strtotime("next Thursday"), "\n";
echo strtotime("last Monday"), "\n";
?>
搜索更多相关主题的帖子: 做网站 seconds 
2012-11-07 16:18



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-386299-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.497698 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved