- Notifications
You must be signed in to change notification settings - Fork8k
Labels
Description
Description
I ran into this issue when I try to accessSTDOUT
withSymfony\Component\Process\PhpProcess
I dig a bit and found out the three stream constants are not available for CLI are not available without a script or certain options (.e.g-a
or-r
)
Here is a simplied way to reproduce.
~> php<?php var_dump(STDOUT);<ctrl+d>
Resulted in this output:
PHP Fatal error: Uncaught Error: Undefined constant "STDOUT" in Standard input code:1Stack trace:#0 {main} thrown in Standard input code on line 1
But I expected this output instead:
resource(2) of type (stream)
I try to trace why there is such constraint but it seems to be there for more than 10 years. Shall we fix it or document this behavior?
PHP Version
PHP 8.2.4
Operating System
irrelevant