8

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.

2 Answers2

12

Just run

sudo apt-get install php5-cli

To run it in interactive mode:

php -a

Run a file:

php /path/to/file
Marco Ceppi
  • 48,827
cweiske
  • 3,395
3

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

which php

This is likely to give you "/usr/bin/php" as an answer, unless you have a special setup.

ywarnier
  • 461