About 519,000 results
Open links in new tab
  1. How to get the PHP Version? - Stack Overflow

    Is there a way to check the version of PHP that executed a particular script from within that script? So for example, the following snippet $version = way_to_get_version (); print $version; would p...

  2. Find PHP version on windows command line - Stack Overflow

    Mar 20, 2013 · I just tried to know version of my PHP from windows command typing, C:\\> php -v But it is not working. It says php is not recognized as internal or external command.

  3. How can I find the version of php that is running on a distinct …

    Sometimes, PHP will emit a X-Powered-By: response header which you can look at e.g. using Firebug. If this setting (controlled by the ini setting expose_php) is turned off (it often is), there …

  4. How to know the version of PHP is used on xampp?

    Mar 24, 2018 · 1 Go to xampp control panel start the apache and mysql and click the admin besides the MySQL. After phpmyadmin page open, there you can see php version, Apache …

  5. macos - How composer check php version? - Stack Overflow

    Oct 11, 2015 · I just wondering how composer check which php to use when check for requirements. I use MacOS and in terminal type: composer require phpunit/phpunit the result …

  6. How to check if PHP-FPM is running properly? - Stack Overflow

    Feb 16, 2013 · The documentation on php fpm website says that php fpm is part for coe php as of 5.3.3 I am running 5.3.10, how can i check that it is working correctly? I thought it was a …

  7. linux - How to check if there are multiple versions of PHP installed …

    Feb 4, 2015 · How to know if I have both php5.3 and php5.5 installed in my system? How to delete php5.3 if it is there and configuring Apache2 to work with php5.5?

  8. PHP version compatibility check - Stack Overflow

    Jul 18, 2015 · Then you can check compatibility of your code with specified PHP version using shell: find . -name *.php | xargs -n1 /usr/bin/php -l php -l command runs PHP in syntax check …

  9. How to know Laravel version and where is it defined?

    The composer.json should be the real answer, you can tell which version it is without even having to have PHP installed in your system.

  10. Check if PHP is installed on Apache or IIS Server?

    Feb 28, 2012 · Is there a way to check if PHP is installed on an Apache or IIS server within the PHP environment itself? If so, how?