分析php://output和php://stdout的区别

 2025-01-15  阅读 417  评论 8  点赞 495

摘要:php包含了以php://开头的一系列输出输出流,如php://stdin, php://stdout等。今天查看代码时,忽然想到一个问题:php://output和php://stdout有什么区别? 从php的官方文献中找答案,对输入流php://stdin和php://input的解释分别如下(输出流的解释过于简略): php://stdin

php包含了以php://开头的一系列输出输出流,如php://stdin, php://stdout等。今天查看代码时,忽然想到一个问题:php://output和php://stdout有什么区别?

分析php://output和php://stdout的区别

从php的官方文献中找答案,对输入流php://stdin和php://input的解释分别如下(输出流的解释过于简略):

php://stdin

php://stdin, php://stdout and php://stderr allow direct access to the corresponding input or output stream of the php process. the stream references a duplicate file descriptor, so if you open php://stdin and later close it, you close only your copy of the descriptor-the actual stream referenced by stdin is unaffected. note that php exhibited buggy behavior in this regard until php 5.2.1. it is recommended that you simply use the constants stdin, stdout and stderr instead of manually opening streams using these wrappers.

php://stdin is read-only, whereas php://stdout and php://stderr are write-only.

php://input

php://input is a read-only stream that allows you to read raw data from the request body. in the case of post requests, it is preferable to use php://input instead of $http_raw_post_data as it does not depend on special php.ini directives. moreover, for those cases where $http_raw_post_data is not populated by default, it is a potentially less memory intensive alternative to activating always_populate_raw_post_data. php://input is not available with enctype=”multipart/form-data”.

文档并未直接阐述两者的区别,仔细对比可得出以下信息:1. 均是只读流; 2. php://stdin是php进程的标准输入,php://input用来读取请求正文的原始数据。通过这些信息,该如何正确认识两者的本质区别?

顺着php://stdin进程输入的提示,联想php进程的执行过程,再结合sapi的差异,可以得到两者主要区别:php://stdin是php进程的输入流,执行生命周期内均可能有数据流入(例如cli下的交互式输入);php://input是php执行时的外部输入流,一般数据只能读一次(具体看sapi的实现)。同理可得到php://stdout和php://output的区别:php://stdout是php进程的标准输出流,php://output是返回的结果数据流。

下面用代码验证结论:


// file: test.php
file_put_contents("php://output", "message sent by output" . php_eol);
file_put_contents("php://stdout", "message sent by stdout" . php_eol);
print("message sent by print" . php_eol);
 
echo "sapi:" , php_sapi , php_eol;

命令行执行文件,输出如下:


message sent by output
message sent by stdout
message sent by print
sapi:cli

浏览器端请求,输出如下:


message sent by output
message sent by print
sapi:fpm-fcgi

在命令行下,php进程的标准输出流和结果输出流均指向终端,所有消息都打印出来。在浏览器端,php进程的输出流被忽略,只有结果数据流被发送到web服务器。同时,print和echo调用的信息都作为执行结果发往结果输出流,所以都正常显示。

最后再感慨一下php内置函数的简洁实用,一个file_put_contents函数就搞定流写入操作,换java需要stream/writer一堆代码,也省去c风格的fopen/fwrite/fclose的繁琐。


标签:phpphp教程

评论列表:

  •   weihang233
     发布于 2天前回复该评论
  • 又学到了新知识!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0335秒, 内存占用1.94 MB, 访问数据库29次

冀ICP备19034377号