php使用date和strtotime函数输出指定日期的方法

2015-01-24信息快讯网

这篇文章主要介绍了php使用date和strtotime函数输出指定日期的方法,实例汇总了生成各种日期格式的方法,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了php使用date和strtotime函数输出指定日期的方法。分享给大家供大家参考。具体方法分析如下:

在php中date和strtotime函数都是对日期操作的,但是在生成上面date和strtotime是不一样的,一个是数字日期一个是 Unix 时间戳了,但我们都可以生成相同的日期,下面来看两个函数的例子。

php中经常会用到date函数和strtotime函数,这2个函数大家一定并不陌生,今天和大家分享下使用技巧。

strtotime ― 将任何英文文本的日期时间描述解析为 Unix 时间戳

date_default_timezone_set('Asia/Shanghai');
//计算昨天的时间,我们用:
date("Ymd",time()-3600);
//生成昨天的时间
date("Ymd",strtotime('yesterday'));
date("Ymd",strtotime('-1 day'));
//生成前天的时间
date("Ymd",strtotime('yesterday -1 day'));
date("Ymd",strtotime('-2 day'));
//生成3天之后的时间
date("Ymd",strtotime('+3 day'));
//生成一个月前的时间
date("Ymd",strtotime('-1 month'));
//生成下个月最后一天的时间
date("Ymd",strtotime('last day of next month'));
//下个周的星期一
date("Ymd",strtotime('next monday'));

希望本文所述对大家的PHP程序设计有所帮助。

ucenter通信原理分析
PHP中new static() 和 new self() 的区别介绍
CI框架中site_url()和base_url()的区别
php中$_POST与php://input的区别实例分析
php读取mssql的ntext字段返回值为空的解决方法
PHP中mysqli_affected_rows作用行数返回值分析
php连接与操作PostgreSQL数据库的方法
PHP_SELF,SCRIPT_NAME,REQUEST_URI区别
腾讯微博提示missing parameter errorcode 102 错误的解决方法
php提示Failed to write session data错误的解决方法
phpmyadmin提示The mbstring extension is missing的解决方法
浅析php适配器模式(Adapter)
php中time()与$_SERVER[REQUEST_TIME]用法区别
php中strtotime函数用法详解
php使用ob_start()实现图片存入变量的方法
php获取url参数方法总结
php 使用file_get_contents读取大文件的方法
php5.3提示Function ereg() is deprecated Error问题解决方法
PHP中file_exists()判断中文文件名无效的解决方法
php基于str_pad实现卡号不足位数自动补0的方法
PHP中的Streams详细介绍
浅谈PHP解析URL函数parse_url和parse_str
PHP基于CURL进行POST数据上传实例
php中file_get_contents与curl性能比较分析
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 2611816 bytes)
php采用file_get_contents代替使用curl实例
php生成xml时添加CDATA标签的方法
php实现的Timer页面运行时间监测类
PHP实现支持GET,POST,Multipart/form-data的HTTP请求类
Yii框架中 find findAll 查找出制定的字段的方法对比
使用PHP和HTML5 FormData实现无刷新文件上传教程
Yii使用find findAll查找出指定字段的实现方法
PHP框架Swoole定时器Timer特性分析
©2014-2024 dbsqp.com