is there a simple php shell for windows?

前端 未结 9 2019
迷失自我
迷失自我 2021-02-04 11:25

Is there a command line php shell available for windows? I looking for something similar to the python shell, that will allow me to open and immediately begin executing code.

9条回答
  •  没有蜡笔的小新
    2021-02-04 12:23

    Try this:

     0 or substr($cmd, -1) !== ';')
        continue;
        eval($cmd);
        $cmd = '';
    }
    

    Save this code to a file (eg shell.php) and then run it from console:

    php shell.php
    

    Hit CTRL+C to exit.

提交回复
热议问题