curl_escape — 주어진 문자열을 URL 인코딩합니다. > 개발자팁

개발자팁

개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.

curl_escape — 주어진 문자열을 URL 인코딩합니다. 정보

PHP curl_escape — 주어진 문자열을 URL 인코딩합니다.

본문

curl_escape — 주어진 문자열을 URL 인코딩합니다.

 

설명 ¶

 

string curl_escape ( resource $ch , string $str )

이 함수 URL은»RFC 3986에 따라 주어진 문자열을 인코딩합니다.

 

인수 ¶

 

ch

curl_init()가 반환한 cURL 핸들입니다.

 

str

인코딩 할 문자열입니다

 

반환값 ¶

Returns escaped string실패 시 FALSE를 반환합니다.

 

예제 ¶

 

 

<?php

// Create a curl handle

$ch = curl_init();

 

// Escape a string used as a GET parameter

$location = curl_escape($ch, 'Hofbräuhaus / München');

// Result: Hofbr%C3%A4uhaus%20%2F%20M%C3%BCnchen

 

// Compose an URL with the escaped string

$url = "http://example.com/add_location.php?location={$location}";

// Result: http://example.com/add_location.php?location=Hofbr%C3%A4uhaus%20%2F%20M%C3%BCnchen

 

// Send HTTP request and close the handle

curl_setopt($ch, CURLOPT_URL, $url);

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

curl_exec($ch);

curl_close($ch);

?>

추천
3

댓글 0개

전체 5,397
개발자팁 내용 검색

회원로그인

(주)에스아이알소프트 / 대표:홍석명 / (06211) 서울특별시 강남구 역삼동 707-34 한신인터밸리24 서관 1402호 / E-Mail: admin@sir.kr
사업자등록번호: 217-81-36347 / 통신판매업신고번호:2014-서울강남-02098호 / 개인정보보호책임자:김민섭(minsup@sir.kr)
© SIRSOFT