Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHPのSTDOUTとphp://STDOUTの違いは何ですか?
fwrite(STDOUT, ...);
対
$StdOut = fopen('php://stdout', 'w'); fwrite($StdOut, ...);
前者はファイル記述子 1 で、2 番目は新しい FD (例: 3) 内の FD1 のコピーです。
STDOUTCLI sapi でのみ使用可能
STDOUT