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); ?>
我期待“你好!” 在输出上,但没有任何反应......这可能是标准输出中的错误,还是我只是疏忽了一些东西?
如果从控制台调用 php,这将是正确的。
但是如果你在谈论网络访问,你应该使用php://output
php://output
你试过简单的:
<?php $out = "foobar"; echo $out; ?>
?
默认情况下,php 打印在STDOUT.
STDOUT