반응형
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);
?>
반응형
'IT > php' 카테고리의 다른 글
php header_remove — 이전에 설정된 머리글 제거 (0) | 2016.12.27 |
---|---|
php urlencode — 문자열을 URL 인코드 (0) | 2016.12.23 |
php curl_escape — 주어진 문자열을 URL 인코딩합니다. (0) | 2016.12.23 |
php headers_list — 보내진 (또는 보낼 준비가 된) 응답 헤더 목록을 반환합니다. (0) | 2016.12.21 |
php setrawcookie — 쿠키 값을 urlencoding하지 않고 쿠키 보내기 (0) | 2016.12.21 |