成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁技術(shù)文章
文章詳情頁

PHP 獲取前一天或后一天的日期代碼

瀏覽:71日期:2022-09-13 14:12:58

PHP 判斷前/后一天,或前后多少天的代碼:

<?php date_default_timezone_set(’PRC’); //默認(rèn)時(shí)區(qū) echo '今天:',date('Y-m-d',time()),'<br>'; echo '今天:',date('Y-m-d',strtotime('18 june 2008')),'<br>'; echo '昨天:',date('Y-m-d',strtotime('-1 day')), '<br>'; echo '明天:',date('Y-m-d',strtotime('+1 day')), '<br>'; echo '一周后:',date('Y-m-d',strtotime('+1 week')), '<br>'; echo '一周零兩天四小時(shí)兩秒后:',date('Y-m-d G:H:s',strtotime('+1 week 2 days 4 hours 2 seconds')), '<br>'; echo '下個(gè)星期四:',date('Y-m-d',strtotime('next Thursday')), '<br>'; echo '上個(gè)周一:'.date('Y-m-d',strtotime('last Monday')).'<br>'; echo '一個(gè)月前:'.date('Y-m-d',strtotime('last month')).'<br>'; echo '一個(gè)月后:'.date('Y-m-d',strtotime('+1 month')).'<br>'; echo '十年后:'.date('Y-m-d',strtotime('+10 year')).'<br>'; ?>

判斷一個(gè)日期距今天還有多少天:

<?php echo (strtotime(’2020-5-20’)-strtotime(date(’Y-m-d’)))/86400; ?>

標(biāo)簽: PHP
相關(guān)文章: