<?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"; ?>
เราสามารถหาวันเวลาข้างหน้าด้วยฟังก์ชั่น strtotime
ตัวอย่างเช่น
อักสามเดือนข้างหน้าจะตรงกับวันที่ใด
<?php $now=time(); // timestamp ของวันที่ปัจจุบัน $next_3_month=date("d-M-Y",strtotime("next 3 month",time())); // วันที่อีก 3 เดือนข้างหน้า ?>