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 $out = fopen('php://stdout', 'w'); fprintf($out, "Hello!"); fclose($out); ?>
「こんにちは!」と期待しています。出力では何も起こりません...それはstdoutのバグでしょうか、それとも何かを見落としただけでしょうか?
これは、コンソールから php を呼び出す場合に当てはまります。
ただし、Web アクセスについて話している場合は、php://output
php://output
簡単なことを試しましたか:
<?php $out = "foobar"; echo $out; ?>
?
デフォルトでは、php はSTDOUT.
STDOUT