Simple PHP interactive shell for Windows.
As you may know, there exists special parameter -a
in PHP command line, which is supposed to execute PHP in some kind of "interactive run". In practice, one of two possible modes of execution is possible: "interactive mode" and "interactive shell". Interactive mode simply waits for data from standard input device terminated with CTRL+Z (Windows) or maybe CTRL+D (probably Linux) and then tries to interpret that data as PHP code. Interactive shell works different: every line of data from standard input device is interpreted immediately.
After issuing php -a
command PHP checks if there is readline extension enabled. If not, interactive mode is chosen. Otherwise, interactive shell is executed. As readline extension isn't available on Windows, only interactive mode is possible in that system.
This little script is trying to simulate some very simple interactive shell. It can be easily extended and I've already used this script with proper modifications in some of my projects.
This code is based on anynomous comment under PHP online documentation.
To run it:
php shell.php
Then try to execute some commands, e.g. echo "Hello\n"
. Last ;
is optional to simplify issuing of single commands. All other semicolons are mandatory.
At this time there is no command prompt, you can add it manually in the code.
To stop the program, simply execute:
exit
Although this script doesn't implement any special features itself, there are some useful functionalities inherited from Windows DOSKEY utility, which is now merged into Windows command-line processor:
- Line editing
- You can change cursor position within edited line with arrow keys,
HOME
,END
and other keys; - Insert and replace mode switched with
INSERT
key;
- You can change cursor position within edited line with arrow keys,
- Command history
- Use up and down arrow keys to browse recent commands while editing;
- Use F7 key to open list of all recent commands in text window;
- Use last command as a template for new one;
For complete listing please take a look at TechNet article about DOSKEY.
On Windows 10 output comments are colored red.
Ideas taken from PsySH
$_
contains result of last operation orNULL
.$_e
contains last uncatched exception (uncatched by your code).
break
command stops the shell but not he whole script (so you can call shell.php from other scripts - e.g. instead ofdie()
while debugging).