curl session 공유하기..
curl 사용시 session 이 공유되지 않는 현상이 있음. 해당 부분을 세션을 강제로 공유하게 만드는 방법. //헤더 추출함수function get_http_header_as_array($rawheader){$header_array = array();$header_rows = explode("\n",$rawheader);for($i=0;$i"user","userpw"=>"1234");curl_setopt($ch, CURLOPT_URL,$URL);curl_setopt($ch, CURLOPT_POST,TRUE);curl_setopt($ch, CURLOPT_POSTFIELDS,http_build_query($Params));curl_setopt($ch, CURLOPT_HEADER,true); //헤더정보를..
2015. 5. 7.