|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull Requests |
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Fri Mar 13 02:00:02 2026 UTC |
Description: ------------ In the following code, the echo command prints string "stdout" in file "out.txt", although it shouldn't: fclose(STDOUT); $out = fopen(__DIR__.'/out.txt', 'w'); echo "stdout\n";