我希望我的代码在命令行(cmd)中运行,然后将结果输出到文本文件。然后,文本文件应包含“hello world”。
我试过
C:\wamp\bin\php\php5.3.13\php.exe -f "C:\wamp\www\hello.php"
答案 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