ฟังก์ชั่นวันที่และเวลาในภาษาphp

เป็นฟังก์ชั่นวันที่และเวลา ฟังก์ชัน date() , ฟังก์ชัน time() , ฟังก์ชัน mktime() , ฟังก์ชัน strtotime
-time()    แสดงเป็นเวลา timestamp ของเครื่อง
-date()    กำหนดวัน
-mktime() แปลงจาก date เป็น timestamp
-strtotime ใช้กำหนดเวลา
ฟังก์ชันผลลัพธ์
<?php
print time()."<br>"; 
// เวลา timestamp ของเครื่อง
date_default_timezone_set("Asia/Bangkok");
                 //เซตพื้นที่ เพื่อให้เวลาตรงกับของจริง
print date("D d m Y H:i:s")."<br>";
print date("วัน D เดือน m ปี Y")."<br>";
print mktime (11,45,42,8,1,2011)."<br>";
               //แปลงจาก date เป็น timestamp
print date("d/m/Y",strtotime("+1 week"))."<br>";               //strtotime ใช้คำนวณเวลาอนาคต อดีต ได้
print date("D d/m/Y",strtotime("-50 days"));
?>
1318333348
Tue 11 10 2011 18:42:28
วัน Tue เดือน 10 ปี 2011
1312173942
18/10/2011
Mon 22/08/2011