$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
答案 0 :(得分:0)
output.txt应该包含什么?您是否尝试在$ output var中获取命令输出? 您可以使用passthru
passthru(“your_command”,& $ output);
然后$ output将包含命令的所有输出
鸭