linux: 命令行运行php Run PHP from the command line

As an alternative to /opt/lampp/bin/php, to run a php script from the command line, you just need to install php5-cli:

sudo apt-get install php5-cli

And run your script with:

php myscript.php

To open an interactive php shell, just type in a terminal:

如果想在terminal里面直接写php,可以用:

php -a

转自:linux: 命令行运行php Run PHP from the command line

扫描二维码关注公众号,回复: 309430 查看本文章

猜你喜欢

转载自justcoding.iteye.com/blog/2265862