Source Code:
(back to article)
<?php // Set the timezone $timezone = new DateTimeZone('Europe/Paris'); // Get the current time in the specified timezone $datetime = new DateTime('now', $timezone); // Get the day of the week $day_of_week = $datetime->format('l'); // Print the day of the week echo "Today is $day_of_week.";
Result:
Report an issue