Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Try echo 2*2 instead. Is there anything from the manual that is specifically not working? – Garry Cairns Feb 9 at 23:35
@Garry Cairns echo doesnt return anything either I dont get it – Anders Kitson Feb 9 at 23:36
What's your OS and php version? – Garry Cairns Feb 9 at 23:36

3 Answers

up vote 1 down vote accepted

On the documentation for the interactive shell, the first note by Ryan P. has some notable information:

Interactive Shell and Interactive Mode are not the same thing, despite the similar names and functionality.

If you type php -a and get a response of 'Interactive Shell' followed by a php> prompt, you have interactive shell available (PHP was compiled with readline support). If instead you get a response of 'Interactive mode enabled', you DO NOT have interactive shell available and this article does not apply to you.

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.

share|improve this answer
Thanks installed phpsh working now – Anders Kitson Feb 9 at 23:52

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().

php -a
php > 2 * 2;            #This doesn't return anything.
php > print (2 * 2);
4
share|improve this answer

Do you have PHP 5.1.0 compiled with --with-readline?

As of PHP 5.1.0, the CLI SAPI provides an interactive shell using the -a option if PHP is compiled with the --with-readline option.

The example from the PHP manual page:

$ php -a

Interactive shell

php > echo 5+8;

13

More info: http://www.php.net/manual/en/features.commandline.interactive.php

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.