# PSR-7 Message Implementation
This repository contains a full [PSR-7](https://www.php-fig.org/psr/psr-7/)
message implementation, several stream decorators, and some helpful
functionality like query string parsing.
![CI](https://github.com/guzzle/psr7/workflows/CI/badge.svg)
![Static analysis](https://github.com/guzzle/psr7/workflows/Static%20analysis/badge.svg)
# Installation
```shell
composer require guzzlehttp/psr7
```
# Stream implementation
This package comes with a number of stream implementations and stream
decorators.
## AppendStream
`GuzzleHttp\Psr7\AppendStream`
Reads from multiple streams, one after the other.
```php
use GuzzleHttp\Psr7;
$a = Psr7\Utils::streamFor('abc, ');
$b = Psr7\Utils::streamFor('123.');
$composed = new Psr7\AppendStream([$a, $b]);
$composed->addStream(Psr7\Utils::streamFor(' Above all listen to me'));
echo $composed; // abc, 123. Above all listen to me.
```
## BufferStream
`GuzzleHttp\Psr7\BufferStream`
Provides a buffer stream that can be written to fill a buffer, and read
from to remove bytes from the buffer.
This stream returns a "hwm" metadata value that tells upstream consumers
what the configured high water mark of the stream is, or the maximum
preferred size of the buffer.
```php
use GuzzleHttp\Psr7;
// When more than 1024 bytes are in the buffer, it will begin returning
// false to writes. This is an indication that writers should slow down.
$buffer = new Psr7\BufferStream(1024);
```
## CachingStream
The CachingStream is used to allow seeking over previously read bytes on
non-seekable streams. This can be useful when transferring a non-seekable
entity body fails due to needing to rewind the stream (for example, resulting
from a redirect). Data that is read from the remote stream will be buffered in
a PHP temp stream so that previously read bytes are cached first in memory,
then on disk.
```php
use GuzzleHttp\Psr7;
$original = Psr7\Utils::streamFor(fopen('http://www.google.com', 'r'));
$stream = new Psr7\CachingStream($original);
$stream->read(1024);
echo $stream->tell();
// 1024
$stream->seek(0);
echo $stream->tell();
// 0
```
## DroppingStream
`GuzzleHttp\Psr7\DroppingStream`
Stream decorator that begins dropping data once the size of the underlying
stream becomes too full.
```php
use GuzzleHttp\Psr7;
// Create an empty stream
$stream = Psr7\Utils::streamFor();
// Start dropping data when the stream has more than 10 bytes
$dropping = new Psr7\DroppingStream($stream, 10);
$dropping->write('01234567890123456789');
echo $stream; // 0123456789
```
## FnStream
`GuzzleHttp\Psr7\FnStream`
Compose stream implementations based on a hash of functions.
Allows for easy testing and extension of a provided stream without needing
to create a concrete class for a simple extension point.
```php
use GuzzleHttp\Psr7;
$stream = Psr7\Utils::streamFor('hi');
$fnStream = Psr7\FnStream::decorate($stream, [
'rewind' => function () use ($stream) {
echo 'About to rewind - ';
$stream->rewind();
echo 'rewound!';
}
]);
$fnStream->rewind();
// Outputs: About to rewind - rewound!
```
## InflateStream
`GuzzleHttp\Psr7\InflateStream`
Uses PHP's zlib.inflate filter to inflate zlib (HTTP deflate, RFC1950) or gzipped (RFC1952) content.
This stream decorator converts the provided stream to a PHP stream resource,
then appends the zlib.inflate filter. The stream is then converted back
to a Guzzle stream resource to be used as a Guzzle stream.
## LazyOpenStream
`GuzzleHttp\Psr7\LazyOpenStream`
Lazily reads or writes to a file that is opened only after an IO operation
take place on the stream.
```php
use GuzzleHttp\Psr7;
$stream = new Psr7\LazyOpenStream('/path/to/file', 'r');
// The file has not yet been opened...
echo $stream->read(10);
// The file is opened and read from only when needed.
```
## LimitStream
`GuzzleHttp\Psr7\LimitStream`
LimitStream can be used to read a subset or slice of an existing stream object.
This can be useful for breaking a large file into smaller pieces to be sent in
chunks (e.g. Amazon S3's multipart upload API).
```php
use GuzzleHttp\Psr7;
$original = Psr7\Utils::streamFor(fopen('/tmp/test.txt', 'r+'));
echo $original->getSize();
// >>> 1048576
// Limit the size of the body to 1024 bytes and start reading from byte 2048
$stream = new Psr7\LimitStream($original, 1024, 2048);
echo $stream->getSize();
// >>> 1024
echo $stream->tell();
// >>> 0
```
## MultipartStream
`GuzzleHttp\Psr7\MultipartStream`
Stream that when read returns bytes for a streaming multipart or
multipart/form-data stream.
## NoSeekStream
`GuzzleHttp\Psr7\NoSeekStream`
NoSeekStream wraps a stream and does not allow seeking.
```php
use GuzzleHttp\Psr7;
$original = Psr7\Utils::streamFor('foo');
$noSeek = new Psr7\NoSeekStream($original);
echo $noSeek->read(3);
// foo
var_export($noSeek->isSeekable());
// false
$noSeek->seek(0);
var_export($noSeek->read(3));
// NULL
```
## PumpStream
`GuzzleHttp\Psr7\PumpStream`
Provides a read only stream that pumps data from a PHP callable.
When invoking the provided callable, the PumpStream will pass the amount of
data requested to read to the callable. The callable can choose to ignore
this value and return fewer or more bytes than requested. Any extra data
returned by the provided callable is buffered internally until drained using
the read() function of the PumpStream. The provided callable MUST return
false when there is no more data to read.
## Implementing stream decorators
Creating a stream decorator is very easy thanks to the
`GuzzleHttp\Psr7\StreamDecoratorTrait`. This trait provides methods that
implement `Psr\Http\Message\StreamInterface` by proxying to an underlying
stream. Just `use` the `StreamDecoratorTrait` and implement your custom
methods.
For example, let's say we wanted to call a specific function each time the last
byte is read from a stream. This could be implemented by overriding the
`read()` method.
```php
use Psr\Http\Message\StreamInterface;
use GuzzleHttp\Psr7\StreamDecoratorTrait;
class EofCallbackStream implements StreamInterface
{
use StreamDecoratorTrait;
private $callback;
private $stream;
public function __construct(StreamInterface $stream, callable $cb)
{
$this->stream = $stream;
$this->callback = $cb;
}
public function read($length)
{
$result = $this->stream->read($length);
// Invoke the callback when EOF is hit.
if ($this->eof()) {
call_user_func($this->callback);
}
return $result;
}
}
```
This decorator could be added to any existing stream and used like so:
```php
use GuzzleHttp\Psr7;
$original = Psr7\Utils::streamFor('foo');
$eofStream = new EofCallbackStream($original, function () {
echo 'EOF!';
});
$eofStream->read(2);
$eofStream->read(1);
// echoes "EOF!"
$eofStream->seek(0);
$eofStream->read(3);
// echoes "EOF!"
```
## PHP StreamWrapper
You can use the `GuzzleHttp\Psr7\StreamWrapper` class if you need to use a
PSR-7 stream as a PHP stream resource.
Use the `GuzzleHttp\Psr7\StreamWrapper::getResource()` method to create a PHP
stream from a PSR-7 stream.
```php
use GuzzleHttp\Psr7\StreamWrapper;
$stream = GuzzleHttp\Psr7\Utils::streamFor('hello!');
$resource = StreamWrapper::getResource($stream);
echo fread($resource, 6); // outputs hello!
```
# Static API
There are various static methods available under the `GuzzleHttp\Psr7` namespace.
## `GuzzleHttp\Psr7\Message::toString`
`public static function toString(MessageInterface $message): string`
Returns the string representation of an HTTP message.
```php
$request = new GuzzleHttp\Psr7\Request('GET', 'http://example.com');
echo GuzzleHttp\Psr7\Message::toString($request);
```
## `GuzzleHttp\Psr7\Message::bodySummary`
`public static function bodySummary(MessageInterface $message, int $truncateAt = 120): string|null`
Get a short summary of the message body.
Will return `null` if th
没有合适的资源?快使用搜索试试~ 我知道了~
AI付费创作系统 独立版+多端同步+分销
共7434个文件
php:6482个
js:281个
css:202个
1星 需积分: 0 29 下载量 19 浏览量
2023-06-09
12:09:45
上传
评论 2
收藏 24.57MB ZIP 举报
温馨提示
安装教程: AI付费创作系统 (独立版+无限多开+完全开源+多端同步+分销+万能创作),本系统含有前后端,支持Web和小程序部署。 前台面向终端用户,具有完整的智能问答界面,采用了流失问答,所以回复流畅不卡顿。系统能够通过微信公众号绑定,使得您可以在多端同步历史问答内容,方便切换。同时具备了奖励任务系统可以获得免费问答次数,也有分销系统可以从2级下线获得丰厚收益。 前端演示 http://45.86.69.176:10666/super/#/login 账号:super 密码:admin888
资源推荐
资源详情
资源评论
收起资源包目录
AI付费创作系统 独立版+多端同步+分销 (7434个子文件)
CertificateDownloader.php.bat 152B
var-dump-server.bat 142B
test.bmp 0B
CHANGELOG 2KB
chunk-elementUI.f92cd1c5.css 235KB
chunk-elementUI.f92cd1c5.css 235KB
chunk-elementUI.f92cd1c5.css 235KB
chunk-6a54f8ff.83a25f0d.css 40KB
chunk-16fbb9c2.6faa4fac.css 40KB
chunk-de2c0124.2a2e4217.css 40KB
chunk-fb7c4108.65f9c96d.css 29KB
chunk-87ea2062.65f9c96d.css 29KB
app.eed16d1a.css 13KB
app.740aecbd.css 13KB
app.ff99fa61.css 13KB
app.b01407ed.css 13KB
app.14ac6374.css 13KB
app.67f332a7.css 13KB
app.38eb254d.css 13KB
app.2c734659.css 13KB
app.bda46a11.css 7KB
chunk-5773f03d.0e028975.css 5KB
chunk-62d38cc6.0e028975.css 5KB
chunk-62d38cc6.0e028975.css 5KB
chunk-726d319e.03101261.css 5KB
chunk-libs.3dfb7769.css 3KB
chunk-libs.3dfb7769.css 3KB
chunk-libs.3dfb7769.css 3KB
htmlDescriptor.css 3KB
chunk-2c70fcea.cd554c3d.css 2KB
chunk-435a8f7b.06f1103f.css 2KB
chunk-6202391c.06f1103f.css 2KB
chunk-396b15bf.9488af66.css 2KB
main.css 2KB
main.css 2KB
chunk-b476a81a.30546b81.css 2KB
chunk-0267943e.30546b81.css 2KB
chunk-61de7f9e.df14b2e3.css 2KB
chunk-543ff9cb.c084503e.css 2KB
chunk-9b1610a6.53ed9a33.css 2KB
chunk-49e2b4ba.df14b2e3.css 2KB
main.css 2KB
chunk-c7b1f6c2.506dabea.css 2KB
chunk-56c38ab4.a8c0469a.css 2KB
chunk-4bfc1996.1261690f.css 2KB
chunk-66f1372a.c89e6f0d.css 2KB
chunk-2e3ad306.ce0bb04c.css 2KB
chunk-094d4679.18cc1408.css 2KB
chunk-a86d0d82.a2fda6b2.css 2KB
chunk-9fd04c02.a2fda6b2.css 2KB
chunk-d005f6f0.3c770e02.css 2KB
chunk-0c3137fc.480f60da.css 2KB
chunk-07b2ffa1.8fb985f4.css 2KB
chunk-1e9f2c86.d1bac95c.css 2KB
chunk-017120a7.a23e9b10.css 2KB
chunk-921a995e.b7c322b5.css 1KB
chunk-6bc5436a.a3be6e92.css 1KB
chunk-3c6c8588.76feb844.css 1KB
chunk-39666534.27ea7075.css 1KB
chunk-29c52347.744facc4.css 1KB
chunk-4bc23a2c.ff56ad11.css 1KB
chunk-394f483c.7603fbdc.css 1KB
chunk-3f76bb39.df49919a.css 1KB
chunk-9f06dd56.211a9645.css 1KB
chunk-11316dfc.54131780.css 1KB
chunk-295f1646.64064357.css 1KB
chunk-00655543.98fb45f3.css 1KB
chunk-711155b5.68d379d1.css 1KB
chunk-ac783bee.89a11fe4.css 1KB
chunk-b5d85fa4.1783b415.css 1KB
chunk-60522a52.d44dca0c.css 1KB
chunk-3e9311ae.3b929f87.css 1KB
chunk-4e2937a1.16ec90d3.css 1KB
chunk-485eb7c6.8b40fed8.css 1KB
chunk-e7dc770c.61be4830.css 1KB
chunk-1c8c8d05.7cf61439.css 1KB
chunk-36f78526.ae3f8d8a.css 1KB
chunk-a029ed36.96539dc9.css 1KB
chunk-2304aa9c.aaa18744.css 1KB
chunk-4cf14a38.3920ab8d.css 911B
chunk-25e89e3c.3941d2b9.css 911B
chunk-dacaa42c.37d83203.css 911B
chunk-097c3c16.3920ab8d.css 911B
chunk-b5db28b6.f5bb2d46.css 911B
chunk-359a32b2.caf391d2.css 808B
chunk-33b899f0.a9a27a97.css 808B
chunk-b20221be.e7a1c288.css 808B
chunk-3908aa7e.cbddb792.css 808B
chunk-2998c12a.a9a27a97.css 808B
chunk-35fddc8e.1b368d42.css 808B
chunk-25b494c2.6f6ae86d.css 808B
chunk-066d1ac6.886759ae.css 808B
chunk-6e042f63.07d573cd.css 808B
chunk-2b18057a.e7a1c288.css 808B
chunk-2a8f2141.07d573cd.css 808B
chunk-8d57370a.886759ae.css 808B
chunk-b12e82e6.7e88d3b9.css 808B
chunk-2a4466a2.7e88d3b9.css 808B
chunk-4d322eac.db9843d6.css 808B
chunk-f53568b6.5b4816d5.css 808B
共 7434 条
- 1
- 2
- 3
- 4
- 5
- 6
- 75
资源评论
- lpf5132023-06-20源码有后门
- chenlin_09102023-07-11源码有后门
老文师傅
- 粉丝: 1
- 资源: 10
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 妈妈!再也不用花钱冲会员了!爱某艺,腾某视频,优某酷,B某站
- android中音频视频开发教程(含代码)中文最新版本
- 1599730581319-申请家庭不动产登记情况承诺表-1.pdf
- Vue2全家桶仿微信App项目,支持多人在线聊天和机器人聊天.zip
- Vue2.0实现简单豆瓣电影webApp.zip
- 数据分析案例- Netflix 电影和电视节目数据集可视化分析(数据集+代码).rar
- vue2.0+router+vuex+express 构建淘票票的全栈demo.zip
- 日常练习前端代码手写笔记图片
- JAVA多线程讲解和多个开发实例
- Vue2 的 datepicker , datetimepicker 组件.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功