如何从命令行运行我的PHP文件

时间:2012-11-08 09:44:56

标签: php windows command-line

我希望我的代码在命令行(cmd)中运行,然后将结果输出到文本文件。然后,文本文件应包含“hello world”。

我试过

C:\wamp\bin\php\php5.3.13\php.exe -f "C:\wamp\www\hello.php"

1 个答案:

答案 0 :(得分:3)

答案很简单,

> answer.txt添加到命令中,它将保存在answer.txt

所以它将是

cd "C:\wamp\bin\php\php5.3.13"
php.exe -f "C:\wamp\www\hello.php" > answer.txt

>表示必须重定向所有输出

了解更多信息,请参阅

http://technet.microsoft.com/en-us/library/bb490982.aspx

修改

如果您还想提供输入,可以

cd "C:\wamp\bin\php\php5.3.13"
php.exe -f "C:\wamp\www\hello.php" < input.ini > answer.txt