I wanna run a .php file in windows cmd. i have follow this suggestion : php is not recognized as an internal command (in Windows)
But not working.
I am trying to do in command program C:\Windows\system32\cd \myfolder Then it enter in my folder like C:\php but when i enter my my php file address like C:\myfolder\php file.php it just showing error "php is not recognized as internal or external" But when i try without php command like C:\myfolder\file.php it just open in notepad. But i wanna run it in CMD. How can be it possible ?
It seems your question is very much older. But I just saw it. I searched(not in google) and found My Answer.
So I am writing its solution so that others may get help from it.
Here is my solution.
Unlike the other answers, you don't need to setup environments.
all you need is just to write
php index.php
ifindex.php
is your file name.then you will see that, the file compiled and showing it's desired output.
If running Windows 10:
path
If on older Windows:
Show Desktop.
Right Click My Computer shortcut in the desktop.
Click Properties.
You should see a section of control Panel - Control Panel\System and Security\System.
Click Advanced System Settings on the Left menu.
Click Enviornment Variables towards the bottom of the System Properties window.
Select PATH in the user variables list.
Append your PHP Path (C:\myfolder\php) to your PATH variable, separated from the already existing string by a semi colon.
Click OK
Open your "cmd"
Type PATH, press enter
Make sure that you see your PHP folder among the list.
That should work.
Note: Make sure that your PHP folder has the php.exe. It should have the file type CLI. If you do not have the php.exe, go ahead and check the installation guidelines at - http://www.php.net/manual/en/install.windows.manual.php - and download the installation file from there.
You should declare Environment Variable for PHP in path, so you could use like this:
You can do it like this
you can for example: set your environment variable path with php.exe folder e.g c:\program files\php
create a script file in d:\ with filename as a.php
open cmd: go to d: drive using d: command
type following command
php -f a.php
you will see the output