sun's longitude:
242 33 50.05
·
자유게시판
·
묻고답하기
·
알파문서
·
RPMS list
·
사용자문서
·
팁/FAQ모음
·
리눅스Links
·
자료실
·
서버정보
·
운영자
·
Books/FAQ
·
FreeBSD
/board/delete.php:소스보기
알파문서
자주 잊어먹거나, 메모해 둘 필요성이 있는 팁이나 문서, 기타 등등
[*** 쓰기 금지단어 패턴 ***]
글 본문 중간에 업로드할 이미지를 추가하는 방법 : @@이미지이름@@
ex) @@foo.gif@@
★ 글 지우기 항목입니다. 한번 더 생각하시고 결정하십시오.!!!
제목
302 : [php] decode chunked
이름
산이 [홈]
http://linuxchannel.net/
한글사랑한글사랑
## http://stackoverflow.com/questions/10793017/how-to-easily-decode-http-chunked-encoded-string-when-making-raw-http-request
##
function decode_chunked($str)
{
for ($res = ''; !empty($str); $str = trim($str))
{
$pos = strpos($str, "\r\n");
$len = hexdec(substr($str, 0, $pos));
$res.= substr($str, $pos + 2, $len);
$str = substr($str, $pos + 2 + $len);
}
return $res;
}
2013년 12월 20일 07:06:48 금(오전)
from
106.240.239.66
암호:
공용 보안 SSL 서버가 준비되기 전까지는 off 합니다
Copyright 1997-2024. linuxchannel.net. All rights reserved.