HTTP 函数
PHP 手册

http_chunked_decode

(PECL pecl_http >= 0.1.0)

http_chunked_decodeDecode chunked-encoded data

说明

string http_chunked_decode ( string $encoded )

Decodes a string which is HTTP-chunked encoded.

参数

encoded

chunked encoded string

返回值

Returns the decoded string on success or FALSE on failure.

范例

Example #1 A http_chunked_decode() example

<?php
$string 
"".
    
"05\r\n".
    
"this \r\n".
    
"07\r\n".
    
"string \r\n".
    
"12\r\n".
    
"is chunked encoded\r\n".
    
"01\n\r\n".
    
"00";
echo 
http_chunked_decode($string);
?>

上例将输出:

this string is chunked encoded


HTTP 函数
PHP 手册