Quick Tip: How to Get the Current Date in PHP

Share this article

Quick Tip: How to Get the Current Date in PHP

PHP provides several functions and classes for working with dates and times. In this article, we’ll look at the different ways to get the current date and time in PHP and discuss some additional considerations when working with time in PHP.

Using the date Function

The date() function is a simple and easy-to-use function for getting the current date and time. To get the current date, you can use the date() function with a format string that specifies the desired date format. For example:

<?php
$currentDate = date('Y-m-d');
echo $currentDate;

This will output the current date in the format YYYY-MM-DD, such as 2023-03-14. We can specify a different format by using a different format string as the first argument to the date() function. For example:

<?php
$currentDate = date('l, F j, Y');
echo $currentDate;

This will output the date in this format: the full name of the current day of the week, the full name of the month, the numeric day of the month, and the four-digit representation of the year, such as Tuesday, March 14, 2023.

You can find a list of available format strings in the PHP documentation.

By default, the date() function uses the server’s local time zone. If you need to work with a different time zone, you can use the date_default_timezone_set function to set the default time zone before calling the date() function.

Using the time and gmdate Functions

Another way to get the current date and time is to use the time() function to get the current timestamp (the number of seconds since the Unix epoch, January 1, 1970 00:00:00 UTC), and then use the gmdate() function to format the timestamp as a date string. For example:

<?php
$timestamp = time();
$currentDate = gmdate('Y-m-d', $timestamp);
echo $currentDate;

This will output the current date in the format YYYY-MM-DD, such as 2023-03-14. We can specify a different format by using a different format string as the second argument to the gmdate() function.

The gmdate() function is similar to the date() function, but it always uses the UTC time zone. This can be useful if you need to work with dates and times in a consistent time zone, regardless of the server’s local time zone.

Using the DateTime Class

The DateTime class provides an object-oriented interface for working with dates and times. To get the current date and time, you can use the DateTime() constructor with the now argument. You can then use the format() method to format the date and time as a string. For example:

<?php
$currentDateTime = new DateTime('now');
$currentDate = $currentDateTime->format('Y-m-d');
echo $currentDate;

This will output the current date in the format YYYY-MM-DD, such as 2023-03-14. You can specify a different format by using a different format string as the argument to the format() method. For example:

<?php
$currentDateTime = new DateTime('now');
$currentDate = $currentDateTime->format('l, F j, Y');
echo $currentDate;

This will output the date in the same format as earlier: the full name of the current day of the week, the full name of the month, the numeric day of the month, and the four-digit representation of the year, such as Tuesday, March 14, 2023.

By default, the DateTime() constructor uses the server’s local time zone. If you need to work with a different time zone, you can pass a time zone string or a DateTimeZone object as the second argument to the constructor, or use the setTimezone() method to set the time zone for an existing DateTime object.

$currentDateTime = new DateTime('now', new DateTimeZone('UTC'));

$currentDateTime = new DateTime('now');
$currentDateTime->setTimezone(new DateTimeZone('UTC'));

The DateTime class provides several other useful methods for working with dates and times, such as add(), sub(), and diff(), which allow you to perform arithmetic with dates and times, and createFromFormat(), which allows you to create a DateTime object from a custom date and time format. You can find more information about these methods and others in the PHP documentation here.

Additional Considerations when Working with Dates in PHP

Here are a few more things we might want to consider when working with dates in PHP:

  • Time zones. By default, the date(), gmdate(), and DateTime() functions use the server’s local time zone. If we need to work with a different time zone, we can use the date_default_timezone_set() function to set the default time zone, or use the DateTimeZone class to create a time zone object and pass it to the DateTime() constructor or the setTimezone() method.

  • Daylight saving time. Depending on your location, the time of day may change twice a year due to daylight saving time. This can cause issues with time-based functions, such as strtotime(), which may not correctly handle the change in time. To avoid these issues, you can use the DateTime class, which provides built-in support for daylight saving time.

  • Localization. If you need to display dates and times in a specific language or format, you can use the setlocale() function to set the current locale, and the strftime() function to format dates and times according to the current locale. You can find more information about localization in PHP in the documentation here.

Conclusion

In conclusion, there are several ways to get the current date and time in PHP. No matter which method you choose, it’s important to consider factors such as time zones, daylight saving time, and localization when working with dates and times in PHP. By taking these factors into account, you can ensure that your code accurately reflects the current date and time and that your date and time-based functionality works as expected.

FAQs About Working With Dates in PHP

What is the primary data type used to represent dates in PHP?

In PHP, dates are primarily represented using the DateTime object. It provides various methods and properties for date and time manipulation.

How do I get the current date and time in PHP?

You can obtain the current date and time using new DateTime() or date('Y-m-d H:i:s').

How can I format a date in PHP?

You can format a date using the format() method in the DateTime object or by using the date() function. For example: $date->format('Y-m-d') or date('Y-m-d', $timestamp).

How do I add or subtract days from a date in PHP?

To add or subtract days, you can use the modify() method of the DateTime object. For example: $date->modify('+1 day').

How can I calculate the difference between two dates in PHP?

You can calculate the difference between two dates using the diff() method, which returns a DateInterval object. Example: $diff = $date1->diff($date2).

How do I work with time zones in PHP?

You can set the time zone using date_default_timezone_set() or by specifying it when creating a DateTime object. To convert between time zones, use setTimezone().

Can I compare two DateTime objects to check which one is greater?

Yes, you can compare DateTime objects using comparison operators like <, <=, >, and >=.

Claudio RibeiroClaudio Ribeiro
View Author

Cláudio Ribeiro is a software developer, traveler, and writer from Lisbon. He's the author of the book An IDE Called Vim. When he is not developing some cool feature at Kununu he is probably backpacking somewhere in the world or messing with some obscure framework.

datedatetimePHP Quick Tips
Share this article
Read Next
Get the freshest news and resources for developers, designers and digital creators in your inbox each week