psr7:PSR 7 HTTP消息库 源码
PSR-7消息实现 该存储库包含完整的消息实现,几个流装饰器以及一些有用的功能,例如查询字符串解析。 流实施 该软件包附带了许多流实现和流装饰器。 AppendStream GuzzleHttp\Psr7\AppendStream 从多个流中读取,一个接一个。 use GuzzleHttp \ Psr7 ; $ a = Psr7 \stream_for ( 'abc, ' ); $ b = Psr7 \stream_for ( '123.' ); $ composed = new Psr7 \ AppendStream ([ $ a , $ b ]); $ composed -> addStream ( Psr7 \stream_for ( ' Above all listen to me' )); echo $ composed ; // abc, 123. Above all l