PHP 소켓
function http_get($host, $path, $data, $cookie) {$http_response = "";$fp = fsockopen($host, 80); fputs($fp, "GET ".$path." HTTP/1.1\r\n");fputs($fp, "Host: ".$host."\r\n");fputs($fp, "User-Agent: ".$_SERVER["HTTP_USER_AGENT"]."\r\n");fputs($fp, "Referer: http://".$host.$path."\r\n");fputs($fp, "Cookie: ".$cookie."\r\n");fputs($fp, "Content-Type: application/x-www-form-urlencoded\r\n");fputs($fp,..
2016. 2. 26.