How to capture error in PHP if exec() function fails to run some command?
e.g. $command = "ls";
exec($command, $output, $return_value); will give
$return_value = 0 & $output contains list of files.
but if $command = "lk";
In this case error will be "lk: command not found"
But exec() command will not capture error into $output.
So, use this before calling exec() function.
$command .= " 2>&1";
It will redirect the STDERR stream to STDOUT, so that you can capture both OUTPUT as well as ERROR from your PHP script into $output.
Subscribe to:
Post Comments (Atom)
tell me about it.
ReplyDeleteamazing, you made this post in 2007, and still, 2 years later, no one has an asnwer ?
I have the same issue today...
ReplyDeletessh'ing to a host bails because the host key doesn't match known_hosts.