多应用+插件架构,代码干净,支持一键云编译,码云点赞13K star,4.8-4.12 预售价格198元 广告
[TOC] ## php://input ## php://output ### 实例1 ``` $fp = fopen('php://output', 'w'); fwrite($fp, "This is a test.\n"); // 等价于 echo "This is a test.\n"; ``` ### 使用 流处理对输出内容进行过滤 ``` $fp = fopen('php://output', 'w'); // 对流进行过滤 stream_filter_append($fp, 'string.toupper'); fwrite($fp, "This is a test.\n"); // THIS IS A TEST. ```