如何在linux控制台运行php程序,就像运行shell脚本一样

发布网友 发布时间:2022-04-24 09:26

我来回答

2个回答

懂视网 时间:2022-04-07 14:26

控制台怎么运行php?

首先进入你的php安装目录

然后假设安装在D:serverphp

接着在cmd命令行下输入:

D:
cd D:serverphp
php.exe -f E:czjxa.php(假设php文件放在 E:czjx)

c784476a09fd1a4788e44744830e1a4.png

推荐:《PHP教程》

热心网友 时间:2022-04-07 11:34

如果只是单独测试一个PHP文件,可以不用建立站点,不用配置apache的虚拟配置文件,使用php的命令行模式可以直接调式:

如测试:/home/usrname/mysite/test.php

<?php

function greeting(){

print "this page is writen in the Vi!";
echo "<br/>";
echo "another web page!";
echo "<br/>";
print "this is edited by Vim!";
echo "<br/>";

}
greeting();
?>

可以使用下列命令:

php -f /home/usrname/mysite/test.php

可以在终端下看到类似的输出:

this page is writen in the Vi!<br/>another web page!<br/>this is edited by Vim!<br/>

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com