diff --git a/wp-admin/includes/dashboard.php b/wp-admin/includes/dashboard.php
index 3a2d3a6..9d44a2b 100644
--- a/wp-admin/includes/dashboard.php
+++ b/wp-admin/includes/dashboard.php
@@ -1615,19 +1615,25 @@ function wp_check_browser_version() {
  */
 function wp_dashboard_php_nag() {
 	$response = wp_check_php_version();
-
+	$version = phpversion();
+	
 	if ( ! $response ) {
 		return;
 	}
 
 	if ( isset( $response['is_secure'] ) && ! $response['is_secure'] ) {
-		$msg = __( 'WordPress has detected that your site is running on an insecure version of PHP.' );
+		printf(
+			'<p>WordPress has detected that your site is running on an insecure version of PHP %s.</p>',
+			$version
+		);
 	} else {
-		$msg = __( 'WordPress has detected that your site is running on an outdated version of PHP.' );
+		printf(
+			'<p>WordPress has detected that your site is running on an outdated version of PHP %s.</p>',
+			$version
+		);
 	}
 
 	?>
-	<p><?php echo $msg; ?></p>
 
 	<h3><?php _e( 'What is PHP and how does it affect my site?' ); ?></h3>
 	<p><?php _e( 'PHP is the programming language we use to build and maintain WordPress. Newer versions of PHP are both faster and more secure, so updating will have a positive effect on your site’s performance.' ); ?></p>
