安装:
成都网站设计、成都网站制作的关注点不是能为您做些什么网站,而是怎么做网站,有没有做好网站,给成都创新互联公司一个展示的机会来证明自己,这并不会花费您太多时间,或许会给您带来新的灵感和惊喜。面向用户友好,注重用户体验,一切以用户为中心。
sudo -i
cd /opt/
wget http://www.phpsh.org/phpsh-latest.tgz
tar zxvf phpsh-latest.tgz
cd phpsh/
sed -i "s#php -q#/usr/local/webserver/php/bin/php -q#g" phpsh
chmod +x phpsh
ln -s /opt/phpsh/phpsh /bin/phpsh
输入phpsh 回车进入
如果报错,可能是python之类的版本冲突,在脚本行首选择一下版本即可。
php> = 3 + 4
7
php> echo "ok"
ok
php> = array(array(1,2),3)
Array
(
[0] => Array
(
[0] => 1
[1] => 2
)
[1] => 3
)
php> var_dump(array(2,3))
array(2) {
[0]=>
int(2)
[1]=>
int(3)
}
php> $str = "string"
php> = $str
string
php> = date("Y-m-d")
2014-01-13
php> q
有个别扭的地方,就是要输出经常要在开头写等号
更多用法
php> = 2 + 3
5
php> = $_
5
php> $x = $_
php> print $x
5
php> = function_exists
function_exists
php> = function_exists('function_exists')
1
php> d array_merge
documentation requires ctags