php下HTTP Response中的Chunked编码实现方法

前端之家收集整理的这篇文章主要介绍了php下HTTP Response中的Chunked编码实现方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

进行Chunked编码传输的HTTP Response会在消息头部设置: @H_4030@Transfer-Encoding: chunked @H403_0@表示Content Body将用Chunked编码传输内容。 @H_403_0@Chunked编码使用若干个Chunk串连而成,由一个标明长度为0的chunk标示结束。每个Chunk分为头部和正文两部分,头部内容指定下一段正文的字符总数(十六进制的数字)和数量单位(一般不写),正文部分就是指定长度的实际内容,两部分之间用回车换行(CRLF)隔开。在最后一个长度为0的Chunk中的内容是称为footer的内容,是一些附加的Header信息(通常可以直接忽略)。具体的Chunk编码格式如下: @H_403_0@<div class="codetitle"><a style="CURSOR: pointer" data="55852" class="copybut" id="copybut55852" onclick="doCopy('code55852')"> 代码如下:

<div class="codebody" id="code55852">@H_4030@  Chunked-Body = *chunk @H4030@         "0" CRLF @H4030@         footer @H4030@         CRLF @H4030@  chunk = chunk-size [ chunk-ext ] CRLF @H4030@       chunk-data CRLF @H4030@  hex-no-zero = <HEX excluding "0"> @H4030@  chunk-size = hex-no-zero *HEX @H4030@  chunk-ext = *( ";" chunk-ext-name [ "=" chunk-ext-value ] ) @H4030@  chunk-ext-name = token @H4030@  chunk-ext-val = token | quoted-string @H4030@  chunk-data = chunk-size(OCTET) @H4030@  footer = *entity-header @H4030@
@H4030@RFC文档中的Chunked解码过程如下: @H403_0@<div class="codetitle"><a style="CURSOR: pointer" data="47566" class="copybut" id="copybut47566" onclick="doCopy('code47566')"> 代码如下:
<div class="codebody" id="code47566">@H_4030@  length := 0 @H4030@  read chunk-size,chunk-ext (if any) and CRLF @H4030@  while (chunk-size > 0) { @H4030@  read chunk-data and CRLF @H4030@  append chunk-data to entity-body @H4030@  length := length + chunk-size @H4030@  read chunk-size and CRLF @H4030@  } @H4030@  read entity-header @H4030@  while (entity-header not empty) { @H4030@  append entity-header to existing header fields @H4030@  read entity-header @H4030@  } @H4030@  Content-Length := length @H4030@  Remove "chunked" from Transfer-Encoding @H4030@
@H403_0@最后提供一段PHP版本的chunked解码代码: @H_403_0@<div class="codetitle"><a style="CURSOR: pointer" data="25540" class="copybut" id="copybut25540" onclick="doCopy('code25540')"> 代码如下:
<div class="codebody" id="code25540">@H_403_0@$chunk_size = (integer)hexdec(fgets( $socketfd,4096 ) ); @H403_0@while(!feof($socket_fd) && $chunksize > 0) { @H403_0@$bodyContent .= fread( $socket_fd,$chunksize ); @H403_0@fread( $socketfd,2 ); // skip \r\n @H403_0@$chunk_size = (integer)hexdec(fgets( $socketfd,4096 ) ); @H4030@} @H403_0@

Chunkedphp

猜你在找的PHP相关文章