Hi,
Is there a way to capture ALL output from a program?
Usually, it seems that the execution functions only capture standard output.
I've tried to output standard error like this:
system('"\Program Files\Microsoft Visual Studio\VC98\Bin\cl" 2>&1')
Still, PHP can't see the output.
BTW, this is the command-line compiler to visual studio. I'm trying to use PHP to make a test-driver, to compile and then run programs.