Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting PHP Version for Currently Running Version

Tags:

grep

bash

php

I have just built 3 different versions of PHP from source on an Ubuntu server (alongside NGINX and MySQL 5.7). I am looking for a way to run php --ini for the currently running version. I know I have to add the location to the file PATH in .bashrc so I don't have to add the full path.

I have added this to my .bashrc which allows me to get the currently running PHP version, which then allows me to run the command:

# parallels@ubuntu:~$ ps aux | grep php
# root      6948  0.0  0.2 153724  4620 ?        Ss   16:48   0:00 php-fpm: master process (/opt/php-7.0.0/etc/php-fpm.conf)

PHP_VERSION=$(ps aux | grep -o php-[[:digit:]].[[:digit:]].[[:digit:]])
export PATH="/bin:/usr/bin:/opt/$PHP_VERSION/bin:/sbin"

It works, but I am a bash novice and I'm thinking their might be a different way to do it. Would I be correct?

like image 838
Chris Mellor Avatar asked Aug 23 '26 02:08

Chris Mellor


2 Answers

This command works while running in PHP

<?php
    echo PHP_VERSION;

You can get it in bash, like

PHP_VERSION=$(php -r "echo PHP_VERSION;")

Here is all of PHP Predefined Constants

like image 197
a55 Avatar answered Aug 25 '26 17:08

a55


I got it to work with the following commands:

# Full version
php -v | head -n 1 | cut -d " " -f 2

# Major.Minor version
php -v | head -n 1 | cut -d " " -f 2 | cut -f1-2 -d"."
like image 31
Nicolas Beauvais Avatar answered Aug 25 '26 17:08

Nicolas Beauvais



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!