mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 03:01:43 +09:00
#493 XEHttpRequest 버그 수정
This commit is contained in:
parent
b1525b7a21
commit
fcf393b4b8
1 changed files with 1 additions and 1 deletions
|
|
@ -163,7 +163,7 @@ class XEHttpRequest
|
||||||
$chunk_size = hexdec(fgets($sock));
|
$chunk_size = hexdec(fgets($sock));
|
||||||
if($chunk_size)
|
if($chunk_size)
|
||||||
{
|
{
|
||||||
$body .= fread($sock, $chunk_size);
|
$body .= fgets($sock, $chunk_size+1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue