For Drupal7
Two ways to find the installed version of drupal. To do this, you must log in as admin.
1. Go to Url 'admin / reports / status', on the status report page it will show the first drupal with its version.
2.Go to Url 'admin / modules', when searching for the main tab, we can find the modules added by drupal, with the "version".
For Drupal8
Open drupal \ core \ lib \ Drupal.php in a text editor
you will see something like this (from line 79 to line 84)
open drupal\core\lib\Drupal.php in your text editor you will see something like this (from line 79 to line 84) class Drupal { /** * The current system version. */ const VERSION = '8.2.3';
Moby M Jul 18 '17 at 6:37 2017-07-18 06:37
source share