php的System()函数无法正常工作

时间:2014-10-15 10:46:29

标签: php

$output = system('SET PATH=%PATH%;C:\xampp\GCC G++ compiler\bin && cd/ && c: && cd xampp\htdocs\College Coding\lessons\HTML && g++ -o temp temp.cpp && temp.exe > output.txt',$ret);

temp.cpp未在我的机器中编译。我尝试了另一个,它正在工作。 它没有创建output.txt

1 个答案:

答案 0 :(得分:0)

output.txt应该包含什么?您是否尝试在$ output var中获取命令输出? 您可以使用passthru

passthru(“your_command”,& $ output);

然后$ output将包含命令的所有输出