vote up 0 vote down star

I have 'stdout' under display_errors in my phpinfo.

What does it mean?

Where can I find the documentation about it?

I could not find one in http://php.net/

I read here telling that it should be off for the security reasons.

Thanks in advance.

flag

78% accept rate

1 Answer

vote up 1 vote down

stdout is the output stream that is used for normal output. echo "hello worl"; outputs to stdout. You can also log to file, or output to stderr. I don't think stderr is useful in the web context, but I could be wrong.

http://us3.php.net/manual/en/wrappers.php.php

link|flag
stderr is logged to webserver error log by default (at least on apache) – Maciej Ɓebkowski Jul 7 at 9:06
Thanks for the clarification Maciej :) – Antony Carthy Jul 7 at 9:08
stdout = "Standard output", stderr = "Standard error [output]" – deceze Jul 7 at 9:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.