How to place the php command in the git bash in Windows?

-2

How to use the PHP command in the Git Bash?

    
asked by darioxlz 31.07.2018 в 00:44
source

1 answer

1

To be able to use the PHP command in the Bash of Git (Git Bash) you have to execute this command:

alias php='C:/xampp/php/php.exe'

What goes between the single quotes is the address where the PHP executable is located.

    
answered by 31.07.2018 / 18:24
source