ID: 13512
Updated by: edink
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: Feature/Change Request
Operating System: FreeBSD
PHP Version: 4.0.5
New Comment:

What you want can be probably be achieved with:

$output = `command 2>&1`;


Previous Comments:
------------------------------------------------------------------------

[2001-10-02 10:27:43] [EMAIL PROTECTED]

If I use the backtick operator, like:

 $output = `command goes here`;

and if the program 'command' returns its output to stderr and not stdout, then it's 
not easy to get the output.

Right now, it can be solved by adding:

 2> /tmp/file/here

and then reading the file in the script, but that's not a good solution.

------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=13512&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to