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