Checking what PHP version I'm running on Linux?
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Dreaming in Puzzles
--
Chapters
00:00 Checking What Php Version I'M Running On Linux?
00:14 Answer 1 Score 19
00:24 Accepted Answer Score 184
00:43 Answer 3 Score 12
01:37 Answer 4 Score 3
01:52 Thank you
--
Full question
https://superuser.com/questions/28633/ch...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#linux #centos #php
#avk47
ACCEPTED ANSWER
Score 184
Try running the following at the command line.
To just get the version information:
php -v
Or to get a lot of info:
php -i
It should give you all information you need about the php install.
ANSWER 2
Score 19
You can make an index.php
file with
<?php phpinfo() ?>
ANSWER 3
Score 12
An answer was accepted, but another option on RPM systems (RHEL, Centos, Fedora, etc.) is to use the following:
rpm -q php
And while I'm at it, the general method for using RPM to find info on a package for any rpm-installed program or file is similar to this (for awk):
Find the full path to the file if not known, such as for an executable in $PATH:
type -path awk
Find the name, including version, of the package containing the file:
rpm -qf /usr/bin/awk
If desired, query for info from that package:
rpm -qi gawk
It's a bit trickier for packages installed and used by Apache since they may not be on $PATH, but you can start with something like:
rpm -qa | egrep -i 'php|awk'
ANSWER 4
Score 3
Use
more /etc/php.ini
This will show you:
- Apache Version
- PHP Versions
- PHP Functions
- Various options regarding PHP