curl_unescape — 지정된 URL 인코딩 된 문자열을 디코딩합니다. > 개발자팁

개발자팁

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

curl_unescape — 지정된 URL 인코딩 된 문자열을 디코딩합니다. 정보

PHP curl_unescape — 지정된 URL 인코딩 된 문자열을 디코딩합니다.

본문

curl_unescape — 지정된 URL 인코딩 된 문자열을 디코딩합니다.

 

설명 ¶

 

string curl_unescape ( resource $ch , string $str )

이 함수는 주어진 URL 인코딩 된 문자열을 디코딩합니다.

 

인수 ¶

 

ch

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

 

str

디코딩 될 URL 인코딩 된 문자열입니다.

 

반환값 ¶

 

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

 

예제 ¶

 

<?php

// Create a curl handle

$ch = curl_init('http://example.com/redirect.php');

 

// Send HTTP request and follow redirections

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

curl_exec($ch);

 

// Get the last effective URL

$effective_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);

// ie. "http://example.com/show_location.php?loc=M%C3%BCnchen"

 

// Decode the URL

$effective_url_decoded = curl_unescape($ch, $effective_url);

// "http://example.com/show_location.php?loc=München"

 

// Close the handle

curl_close($ch);

?>

추천
2

댓글 0개

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

회원로그인

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