Thuta Learning
AdvancedProgrammingbeginner

Date & Time

Relax. We'll talk through this in plain words — no textbook voice.

Date & Time comes up everywhere — blog post dates, order dates, invoice timestamps, booking schedules, activity logs. PHP's date() function lets you change the format, and setting the correct timezone matters a lot.

php
<?php
date_default_timezone_set("Asia/Yangon");

echo "Today is " . date("Y-m-d") . "<br>";
echo "Current time is " . date("h:i A") . "<br>";
echo "Order ID: ORD-" . date("Ymd-His");
?>
You should see
Today is 2026-05-04 Current time is 10:30 AM Order ID: ORD-20260504-103000

Easy traps

  • If you don't set a timezone, the server's default timezone can make the displayed time different from what the user expects.
Date & Time | Thuta Learning