JavaScript Editor Javascript debugger     Website design 


http_chunked_decode

Decode chunked-encoded data (PECL pecl_http:0.1.0-1.5.5)
string http_chunked_decode ( string encoded )

Decodes a string which is HTTP-chunked encoded.

Parameters

encoded

chunked encoded string

Return Values

Returns the decoded string on success or FALSE on failure.

Examples

Example 884. 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);
?>

The above example will output:

this string is chunked encoded