PHP命令行模式

如果只是单独测试一个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/>

* http://man.chinaunix.net/develop/php/php_manual_zh/html/function.php-sapi-name.html 这里有一篇更为详细的说明有兴趣的朋友可以参看。

你可能感兴趣的:(apache,Web,PHP,function,测试,vim)