Member
garnet.barrows
How to access standard error stream in PHP?
bria_metz
You can access standard error stream in PHP by using following code snippet:
1 2 3 4 5
$stderr = fwrite("php://stderr"); $stderr = fopen("php://stderr", "w"); $stderr = STDERR;