diff --git a/core/includes/bootstrap.inc b/core/includes/bootstrap.inc
index d11e608..557f377 100644
--- a/core/includes/bootstrap.inc
+++ b/core/includes/bootstrap.inc
@@ -26,6 +26,11 @@
 const DRUPAL_MINIMUM_PHP = '5.4.5';
 
 /**
+ * Suggested version of PHP.
+ */
+const DRUPAL_SUGGESTED_PHP = '5.6.5';
+
+/**
  * Minimum recommended value of PHP memory_limit.
  *
  * 64M was chosen as a minimum requirement in order to allow for additional
diff --git a/core/modules/system/system.install b/core/modules/system/system.install
index a0849b1..62e5082 100644
--- a/core/modules/system/system.install
+++ b/core/modules/system/system.install
@@ -85,16 +85,16 @@ function system_requirements($phase) {
     // If PHP is old, it's not safe to continue with the requirements check.
     return $requirements;
   }
-
-  // Suggest to update to at least 5.5.21 or 5.6.5 for disabling multiple
-  // statements.
-  if (($phase === 'install' || \Drupal::database()->driver() === 'mysql') && !SystemRequirements::phpVersionWithPdoDisallowMultipleStatements($phpversion)) {
-    $requirements['php'] = array(
-      'title' => t('PHP (multiple statement disabling)'),
-      'value' => $phpversion_label,
-      'description' => t('PHP versions higher than 5.6.5 or 5.5.21 provide built-in SQL injection protection for mysql databases. It is recommended to update.'),
-      'severity' => REQUIREMENT_INFO,
-    );
+  elseif (($phase === 'install' || \Drupal::database()->driver() === 'mysql') && !SystemRequirements::phpVersionWithPdoDisallowMultipleStatements($phpversion)) {
+    // Suggest to update to at least 5.5.21 or 5.6.5 for disabling multiple
+    // statements.
+    $requirements['php']['title'] = t('PHP (multiple statement disabling)');
+    $requirements['php']['description'] = t('PHP versions higher than 5.6.5 or 5.5.21 provide built-in SQL injection protection for mysql databases. It is recommended to update.');
+    $requirements['php']['severity'] = REQUIREMENT_INFO;
+  }
+  elseif (version_compare($phpversion, DRUPAL_SUGGESTED_PHP) < 0) {
+    $requirements['php']['description'] = t('Your current PHP installation is still supported, but Drupal suggests using PHP %version. Find more information about the <a href="@version_support">PHP requirements for Drupal</a>.', array('%version' => DRUPAL_SUGGESTED_PHP, '@version_support' => 'https://www.drupal.org/requirements/php'));
+    $requirements['php']['severity'] = REQUIREMENT_INFO;
   }
 
   // Test for PHP extensions.
