How to set the env variable for PHP?

后端 未结 7 1999
梦如初夏
梦如初夏 2020-11-27 18:56

I am using WAMP. I want to use php from the command prompt. What is the entry in PATH env variable for this ?

相关标签:
7条回答
  • 2020-11-27 19:17

    For windows: Go to your "system properties" please.then follow as bellow.

    Advanced system settings(from left sidebar)->Environment variables(very last option)->path(from lower box/system variables called as I know)->edit

    then concatenate the "php" location you have in your pc (usually it is where your xampp is installed say c:/xampp/php)

    N.B : Please never forget to set semicolon (;) between your recent concatenated path and the existed path in your "Path"

    Something like C:\Program Files\Git\usr\bin;C:\xampp\php

    Hope this will help.Happy coding. :) :)

    0 讨论(0)
  • 2020-11-27 19:17

    Try display phpinfo() by file and check this var.

    0 讨论(0)
  • 2020-11-27 19:25

    It depends on your OS, but if you are on Windows XP, you need to go to Systems Properties, then Advanced, then Environment Variables, and include the php binary path to the %PATH% variable.

    Locate it by browsing your WAMP directory. It's called php.exe

    0 讨论(0)
  • 2020-11-27 19:31

    You need to add the PHP directory to your path. On the command line (e.g. in a batch file), it would look like this:

    SET PATH=%PATH%;C:\your\wamp\path\php
    

    if in doubt, it's the directory containing the php.exe.

    You can also pre-set the path in Windows' control panel. See here on how to do this in Windows 7 for example.

    Be aware that if you call the PHP executable from an arbitrary directory, that directory will be the working directory. You may need to adjust your scripts so they use the proper directories for their file operations (if there are any).

    0 讨论(0)
  • 2020-11-27 19:35

    You May use set keyword for set the path

    set path=%path%;c:/wamp/bin/php/php5.3.0
    

    if all the path are set in path variables

    If you want to see all path list. you can use

    set %path%
    

    you need to append your php path behind this path.

    This is how you can set environment variable.

    0 讨论(0)
  • 2020-11-27 19:40

    Follow this for Windows operating system with WAMP installed.

    System > Advanced System Settings > Environment Variables
    Click new
    
    Variable name  : path
    Variable value : c:\wamp\bin\php\php5.3.13\
    
    
    Click ok
    
    0 讨论(0)
提交回复
热议问题