I want to run an exe file on my server and return the output to the browser screen. The exe file takes a input file and then returns data on the screen.
Why is this code not working?
$output = shell_exec('myprogram < INP.DAT');
echo "<pre>" . var_export($output, TRUE) ."</pre>\\n";
It displays "NULL" on the browser screen. I have also tried exec(). There it returns "Array()".
One of the comments on the shell_exec
manual page says:
Beware of the following inconsistency:
shell_exec()
and the backtick operator will not return a string if the command's output is empty -- they'll returnNULL
instead.This will make strict comparisons to
''
returnfalse
.
It may be disabled if PHP is in safe mode.
shell_exec()
(functional equivalent of backticks)
This function is disabled when PHP is running in safe mode.
exec()
You can only execute executables within thesafe_mode_exec_dir
. For practical reasons it's currently not allowed to have..
components in the path to the executable.escapeshellcmd()
is executed on the argument of this function.
You can check your server's PHP settings with the phpinfo()
function.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With