Answers for "how to check php version in ubuntu"

PHP
3

check the php version in ubuntu

php --version
Posted by: Guest on December-09-2020
5

change php version ubuntu

//In ubunutu
Default PHP 7.1 is set on your system and you need to switch to PHP 5.6

$ sudo a2dismod php7.1
$ sudo a2enmod php5.6
$ sudo service apache2 restart
  
sudo update-alternatives --set php /usr/bin/php5.6
Posted by: Guest on October-27-2020
1

check all php version installed ubuntu

Lists down all installed php versions

sudo update-alternatives --list php
Posted by: Guest on September-02-2021
1

check php version linux terminal

/* in terminal type it*/
php -v
Posted by: Guest on March-24-2021
1

php check version ubuntu

php -version
Posted by: Guest on February-01-2021
0

php version command linux

# php -v
PHP 5.4.16 (cli) (built: Mar  7 2018 13:34:47) 
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies
Posted by: Guest on June-08-2020

Code answers related to "how to check php version in ubuntu"

Browse Popular Code Answers by Language