메뉴 건너뛰기

프로그램언어

조회 수 328 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
curl을 이용하여 post, get 방식 으로 데이터 전송하기

<?
// GET 방식 함수
function get($url, $params=array()) 
{ 
    $url = $url.'?'.http_build_query($params, '', '&');
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    $response = curl_exec($ch);
    curl_close($ch);
    return $response;
}
 
// get함수 호출
get('http://itfresh.tistory.com', array('param1'=>'value1', 'param2'=>'value2'));
 
 
// POST 방식 함수
function post($url, $fields)
{
    $post_field_string = http_build_query($fields, '', '&');
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $post_field_string);
    curl_setopt($ch, CURLOPT_POST, true);
    $response = curl_exec($ch);
    curl_close ($ch);
    return $response;
}
 
// post함수 호출
post('http://itfresh.tistory.com', array('field1'=>'value1', 'field2'=>'value2'));
?>

 


List of Articles
번호 제목 날짜 조회 수
300 mysql_free_result(); 관련 오류 2021.03.25 288
299 [PHP기초] 함수와 객체의 비교 2021.03.27 290
298 PHP웹 보안 취약점 TOP5(웹해킹) 2023.01.12 292
297 비교연산자 ( === 에 관해서 ) 2021.03.25 307
296 콜론 연산자 2021.03.26 307
295 PHP Notice: Use of undefined constant ... assumed ... 오류 2021.03.26 307
294 확장자 추출 하기 2021.03.26 309
293 정규표현식 2021.03.26 311
292 PHP와 HTML과 자바스크립트의 관계 2021.03.26 311
291 쿠키 확인 후 만료시 세션 파괴하는 방법 2020.11.23 314
290 문자열 함수 모음 2021.03.26 318
289 특정일의 주차 구하기 2021.07.08 322
288 TIFF, GIF 여러장 변환 file 2021.03.26 323
» curl을 이용하여 post, get 방식 으로 데이터 전송하기 2023.01.12 328
286 복권 번호 뽑기 2021.03.26 338
285 php 암호화 복호화 , 간단한 암호화 2023.01.12 358
284 AJAX로 해당 페이지에서 COOKIE 사용하기 2021.03.26 359
283 HEREDOC <<< ( PHP에서 echo로 HTML쉽게 표시하기 ) 2021.03.26 371
282 문자,숫자 랜덤 출력 2021.03.26 404
281 php date 날짜 관련 함수 file 2021.03.27 411
Board Pagination Prev 1 2 3 4 5 6 7 8 9 10 ... 17 Next
/ 17

하단 정보를 입력할 수 있습니다

© k2s0o1d4e0s2i1g5n. All Rights Reserved