I am in the interacive shell for php using the command php -a in terminal but no commands are working, I even try a simple 2 * 2 and I get no results, how does it work.
|
On the documentation for the interactive shell, the first note by Ryan P. has some notable information:
So if you get only "Interactive mode enabled", then you'll only be able to type in PHP code and then when you're done, send PHP an EOF to execute it. This is probably not what you want. You may want to look into phpsh instead. |
|||
|
|
|
Are you using print() or echo()? Your example of 2*2 will execute, but you won't see any proof of it until you tell PHP to do something with the output like print().
|
|||
|
|
|
Do you have PHP 5.1.0 compiled with
The example from the PHP manual page:
More info: http://www.php.net/manual/en/features.commandline.interactive.php |
|||
|
|
echo 2*2instead. Is there anything from the manual that is specifically not working? – Garry Cairns Feb 9 at 23:35