Date/Time: Introduce `current_datetime()` for better time operations.

Returning a `DateTimeImmutable` representation of the current moment in time, this allows for a more flexible and reliable use than `current_time()` provides.

Props Rarst.
Fixes #47464.

git-svn-id: https://develop.svn.wordpress.org/trunk@45883 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2019-08-23 01:11:22 +00:00
parent 67f7d1f4c7
commit 1c66cf519b
2 changed files with 12 additions and 1 deletions

View File

@ -860,7 +860,7 @@ function wp_dashboard_recent_posts( $args ) {
echo '<ul>';
$today = current_time( 'Y-m-d' );
$tomorrow = gmdate( 'Y-m-d', strtotime( '+1 day', current_time( 'timestamp' ) ) );
$tomorrow = current_datetime()->modify( '+1 day' )->format( 'Y-m-d' );
$year = current_time( 'Y' );
while ( $posts->have_posts() ) {

View File

@ -79,6 +79,17 @@ function current_time( $type, $gmt = 0 ) {
return $datetime->format( $type );
}
/**
* Retrieves the current time as an object with the timezone from settings.
*
* @since 5.3.0
*
* @return DateTimeImmutable Date and time object.
*/
function current_datetime() {
return new DateTimeImmutable( 'now', wp_timezone() );
}
/**
* Retrieves the timezone from current settings as a string.
*