Index: wp-admin/includes/class-wp-debug-data.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
diff --git a/wp-admin/includes/class-wp-debug-data.php b/wp-admin/includes/class-wp-debug-data.php
--- a/wp-admin/includes/class-wp-debug-data.php	(revision 0e6a976c0a046c3b65407d34db33546eaa65771b)
+++ b/wp-admin/includes/class-wp-debug-data.php	(date 1662443422726)
@@ -835,6 +835,22 @@
 			);
 		}
 
+		// Server time
+		$date = new \DateTime("now", new \DateTimeZone("UTC"));
+		$info['wp-server']['fields']['current'] = array(
+			'label' => __( 'Current date' ),
+			'value' => $date->format(\DateTime::ATOM),
+		);
+		$info['wp-server']['fields']['utc-time'] = array(
+			'label' => __( 'Current UTC time' ),
+			'value' => $date->format(\DateTime::RFC850),
+		);
+
+		$info['wp-server']['fields']['server-time'] = array(
+			'label' => __( 'Current Server time' ),
+			'value' => wp_date( 'c', $_SERVER['REQUEST_TIME'] ),
+		);
+
 		// Populate the database debug fields.
 		if ( is_resource( $wpdb->dbh ) ) {
 			// Old mysql extension.
