Kiểm tra version php linux

There are several possibilities to check and validate PHP version on Linux.

1. Open a bash shell terminal and use the command “php –version” or “php -v” to get the version of PHP installed on the system.

# php --version
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

# 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

As you can see from both the command output above, the system has PHP 5.4.16 installed.

2. You can also check for the package versions installed on the system to get the PHP version.
On RedHat Based Distributions :

# rpm -qa | grep php
php-common-5.4.16-43.el7_4.1.x86_64
php-pdo-5.4.16-43.el7_4.1.x86_64
php-mysql-5.4.16-43.el7_4.1.x86_64
php-mbstring-5.4.16-43.el7_4.1.x86_64
php-cli-5.4.16-43.el7_4.1.x86_64
php-gd-5.4.16-43.el7_4.1.x86_64
php-5.4.16-43.el7_4.1.x86_64

On debian based distributions :

# apt list --installed | grep php

3. Let’s create a PHP file with content as shown below. The phpinfo() function outputs a great deal of information about the state of the current PHP environment, including loaded extensions, compilation options, version, server information, and so on.

# echo "<?php phpinfo();?>" > /var/www/html/phpinfo.php

4. Now, considering that Apache is installed and working, open a browser and test PHP using address as follow:

http://server/phpinfo.php

Kiểm tra version php linux

While working in the computer science field, you must have heard about some programming languages. One of those languages is “PHP” which can be used in various operating systems. It is used to design and create websites or their pages for a better look and feel. You can call it a server-scripting language as well. All the languages came up with many of the versions i.e., old to new. Thus, we have decided to see how we can find out the version of installed PHP on the Ubuntu 20.04 Linux operating system using simple version commands on the shell.

So, let’s just get started by the login from Ubuntu 20.04 system. After login, try to open your Ubuntu 20.04 terminal console application from its application area using the search activity bar. Write “terminal” and tap Enter. An application named “terminal” will be shown. Click on it to open it. If you want to avoid this complex and long procedure, just use the “Ctrl+Alt+T” shortcut. Let’s get started with the newly launched terminal shell and the system update in it.

For the system update, we need to make use of the “apt” package in the command along with the “update” keyword. This command must be executed with the sudo rights to avoid any issue. Within a few minutes, all the updates will be installed and applied to your Linux system. The output is attached in the appended screenshot.

Kiểm tra version php linux

Now, the system update has been done, we need to upgrade the system as well. For that, you must use the same “apt” package command with sudo rights to upgrade your system. Use the keyword “upgrade” to do so. Within a few minutes, your system will be upgraded as well. The output is attached in the appended screenshot.

Kiểm tra version php linux

Let’s start with the checking of the PHP installed version on our system using the simple and most used “version” command. For this, you have to use the word “PHP” with the flag “—version” and execute it as a single command by pressing the Enter key. On execution, we have got the below-shown output. The output is showing that the PHP has no version installed on our system and it is suggesting a command to install the newest version available for our system. So, it is clear that we must have some version of the PHP language already configured at our end. The output is attached in the appended screenshot.

Kiểm tra version php linux

We can also use the same version command with a shortcut. For this, we don’t need to use the “—version” full word flag. We can utilize the simple “-v” flag to do so as shown below.

Kiểm tra version php linux

So, before checking the installed version on our system with the command, we have to install it for sure. For installation, we require sudo rights to be used in the command. Within the query area, you have to use the “apt” package to install the “PHP” language. Also, if you don’t know any PHP version, just use the word “PHP” after the “install” keyword in the command beneath. It will start getting the necessary information regarding this installation. The output is attached in the appended screenshot.

Kiểm tra version php linux

It will show you a list in this command output that is going to be installed on our Ubuntu 20.04 system. This list contains many of the server packages, some utilities, and necessary libraries to make it usable on our Linux system.

Kiểm tra version php linux

After the above listing, the system will pause the installation process and let you know about the memory space it is going to be taken after the installation i.e., 25.9 MB. If you are willing to give such space to the PHP language on your system, then simply click “y” from the keyword and hit the key “Enter” to continue the installation process as we did beneath.

Kiểm tra version php linux

Right after your click on the Enter key, the system will start executing all the listed libraries, packages, and utilities on the Linux system. The below-shown progress will be shown and different links will be created to add PHP within the system.

Kiểm tra version php linux

Within no more than 10 minutes, the newest PHP version will be installed and successfully configured on our system. The complete output of the last processing lines is shown below.

Kiểm tra version php linux

After the PHP installation, we will take a look at its installed version through the version command with i.e., “-v” flag as below. You will see that it will display an installed version of PHP within your system i.e., 7.4.3. You will also get other information regarding the installation date and time, and the owner of PHP. The output is attached in the appended screenshot.

Kiểm tra version php linux

The same thing can be achieved by the “—version” flag in the “PHP” command as beneath. The output is attached in the appended screenshot.

Kiểm tra version php linux

These were the simplest and most used commands to get to know about the PHP version in the Ubuntu 20.04 CLI. There are other commands too. For example, we can also use the keyword “PHP” with the flag “-i” to get the PHP version and other information regarding it. After running it, the “phpinfo()” function got executed and displayed the version of PHP along with extra info. The output is attached in the appended screenshot.

Kiểm tra version php linux

You can also check out all the other utilities of PHP installed within your system along with it using the “dpkg” list command with the “—list” flag. You have to use the “grep” keyword with the “PHP” keyword. The output is attached in the appended screenshot.

Kiểm tra version php linux

Conclusion

To sum up, this was all about the checking of the PHP installed version on our Ubuntu 20.04 system. To achieve this, you need to have a mounted version of PHP on your system. If not, you have to go through the above article from start to end and you will understand everything. The details provided in this article were all quite simple and we must say will be easy to do.

About the author

Kiểm tra version php linux

Hello Readers, I am Omar and I have been writing technical articles from last decade. You can check out my writing pieces.