这篇文章主要为大家详细介绍了php 时间函数使用技巧解析,具有一定的参考价值,可以用来参考一下。
对php时间函数使用技巧感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* php时间函数使用技巧
*
* @param
* @arrange 512-笔记网: q1010.com
**/
<?php
date_default_timezone_set("PRC");
$mydatestring = array('now','today','tomorrow','yesterday','thursday','this thursday','last thursday','+2 hours','-1 month','30 seconds','next week','last year','2 weeks ago');
foreach($mydatestring as $item)
{
echo "$item:".date('r',strtotime($item)).'<br />';
}
?>
/*** 来自四海网(www.q1010.com) ***/
输出:
/**
* php时间函数使用技巧
*
* @param
* @arrange 512-笔记网: q1010.com
**/
$nextmonth = date('Y-'.(date('n')+1).'-0');
$nextmonth_timest = strtotime($nextmonth);
$first_fri = strtotime('Fri',$nextmonth_timest);
echo "Today:".date('Y-m-d');
echo '<br />';
echo 'the first Fri of next month is :'.date('Y-m-d',$first_fri);
/*** 来自四海网(www.q1010.com) ***/
输出: Today:2009-02-28 the first Fri of next month is :2009-03-06
本文来自:http://www.q1010.com/173/1188-0.html
注:关于php 时间函数使用技巧解析的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:时间函数
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。