本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
- sichunli_030
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- e_e
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- zhanjia
- lzyfn123
- forestqqqq
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- mwhgJava
- silverend
- kingwell.leng
- lchb139128
- kristy_yy
- lich0079
- johnsmith9th
- jveqi
- java-007
- sunj
最新文章列表
坑爹的php方法2 strtotime
http://d.hatena.ne.jp/bushimichi/20091101/1257007448/
写道
echo '前月 => '. date('m', strtotime('2009-10-31 -1 month')) .'<br>';echo '今月 => '. date('m', strtotime('2009-10-31') ) .'&l ...
PHP计算当前时间之后(之前)的时间
PHP中有一个非常厉害的函数,strtotime()函数,这个函数有一个异常厉害的使用方法,手册上说的有,但是估计在实际应用中能够想到的人不多:
请看下面的列子:
当前时间之后的时间是“+”,之前的时间当然用“-”就可以了!
strtotime(”+1 week”) 当前时间一周之后
strtotime(”-1 week”) 当前时间一周之前
strtotim ...
获取昨天,今天,明天的时间
在php的Date类里面有一个非常强大的时间函数,能很随意的获取指定的时间日期
strtotime() —— 将任何英文文本的日期时间描述解析为Unix时间戳
strtotime(string $time [, $now = time()])
该函数预期接收一个含美国英语日期格式的字符串尝试将其解析为Unix时间戳,其值相对于now参数给出的时间,如果没有提供此参数,则用系统 ...
strtotime("+1 month", $strtimes) 导致时间戳错误
如果要获取当前时间中未来一个自然月的这个linux时间戳时
使用 $nexttime = strtotime("+1 month", $strtimes); 是不精确的,尤其$strtimes无效时。
因为PHP中 “+1 month” 默认是30天,strtotime中 “+1 month”大月31、小月30、2月是28天,因此会导致时间戳错误
要使 ...
php中挺好用的strtotime方法
在PHP中,经常要对日期进行计算,比如要计算一个月前的日期,那么其实最快的方法
是用strtotime,其功能很丰富,如下:
echo strtotime("now"), "\n";
echo strtotime("10 September 2000"), "\n";
echo strtotime(&q ...