small cleanup
This commit is contained in:
parent
8dc735df42
commit
ac16579d7a
@ -76,15 +76,16 @@ class AsynchronousFileReader {
|
|||||||
private function parseResult($streamBuffer) {
|
private function parseResult($streamBuffer) {
|
||||||
$resultArray = explode(PHP_EOL . PHP_EOL, $streamBuffer, 2);
|
$resultArray = explode(PHP_EOL . PHP_EOL, $streamBuffer, 2);
|
||||||
if (count($resultArray) < 2) {
|
if (count($resultArray) < 2) {
|
||||||
$result = self::INVALID_RESULT_ERROR;
|
return self::INVALID_RESULT_ERROR;
|
||||||
} else {
|
}
|
||||||
|
|
||||||
$header = $this->parseHeader($resultArray[0]);
|
$header = $this->parseHeader($resultArray[0]);
|
||||||
if (isset($header["transfer-encoding"])) {
|
if (isset($header["transfer-encoding"])) {
|
||||||
$result = $this->decode_chunked($resultArray[1]);
|
$result = $this->decode_chunked($resultArray[1]);
|
||||||
} else {
|
} else {
|
||||||
$result = $resultArray[1];
|
$result = $resultArray[1];
|
||||||
}
|
}
|
||||||
}
|
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -107,6 +108,7 @@ class AsynchronousFileReader {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Parse the Header
|
* Parse the Header
|
||||||
|
*
|
||||||
* @param $header
|
* @param $header
|
||||||
* @return array
|
* @return array
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user