How to install PHP Compiler/Interpreter on ubuntu 11.04
I have latest version of PHP, but I want to learn PHP from terminal. Is there a PHP interpreter available that will run PHP programs inside terminal.
e.g. I want to run command like "phpc" or "phpi" or "php" to open up PHP REPL.
Thanks.
Just run
To run it in interactive mode:
Run a file:
Run the interpreter (there's no compiler in default PHP) using the "php" command, yes. If you'd like to know where "php" comes from (what executable is launched), type
This is likely to give you "/usr/bin/php" as an answer, unless you have a special setup.