Drupal PHP requirements for the currently recommended PHP version for this release. See PHP\'s version support documentation for more information on PHP\'s own support schedule.';
exit;
}
// Initialize the autoloader.
$class_loader = require_once $root_path . '/autoload.php';
// If OPCache is in use, ensure opcache.save_comments is enabled.
if (OpCodeCache::isEnabled() && !ini_get('opcache.save_comments')) {
print 'Systems with OPcache installed must have opcache.save_comments enabled.';
exit();
}
// Start the installer.
require_once $root_path . '/core/includes/install.core.inc';
install_drupal($class_loader);