Home  >  Article  >  Backend Development  >  How to check php version?

How to check php version?

青灯夜游
青灯夜游Original
2019-10-16 15:43:2318626browse

How to check php version?

How to check the php version

##1. Use the php function phpinfo():

The phpinfo function returns all information about PHP, including PHP compilation options and extended configuration, PHP version, server information and environment variables, PHP environment variables, operating system version information, path and environment variable configuration, HTTP tags header, copyright notice and other information.

Effect screenshot:

How to check php version?

#2. Use the predefined constant PHP_VERSION to query:

Effect picture:

How to check php version?

3. Use the phpversion() function to query:

Rendering:

How to check php version?

4. Enter php –v on the command line:

as shown below:

How to check php version?

Note: PHP needs to be configured Environment variables

The steps to configure PHP environment variables are as follows:

①Right-click the "Computer" icon to display the following page:

How to check php version?

②Click "Advanced System Settings", the following page appears:

How to check php version?

③ Click "Environment Variables", the following page appears:

How to check php version?# #④Find the Path line and copy the PHP directory into the small box (note: the added Path and the previous default Path need to be separated by English;):

My PHPPath: F:\ zero_wampserver\wamp\bin\php\php5.5.12

(Just find the directory where php.exe is located)

How to check php version?⑤Click "OK" environment The variable configuration is completed.

For more PHP related knowledge, please visit

php中文网

!

The above is the detailed content of How to check php version?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn