发布网友 发布时间: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)
推荐:《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/>