如何在linux控制台运行php程序,就像运行shell脚本一样
展开全部
如果只是单独测试一个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/>
如测试:/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/>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询