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

· 2016-12-23 (금) 13:19:24 · 2756

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);

?>

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

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

+
분류 제목 글쓴이 날짜 조회
PHP 17-01-03 조회 3,688
PHP 17-01-03 조회 2,818
PHP 17-01-03 조회 2,822
PHP 17-01-03 조회 2,813
PHP 17-01-02 조회 3,189
PHP 17-01-02 조회 2,740
PHP 17-01-02 조회 2,459
PHP 17-01-02 조회 5,675
PHP 17-01-01 조회 2,428
PHP 17-01-01 조회 2,560
PHP 17-01-01 조회 2,547
기타 16-12-31 조회 3,377
PHP 16-12-30 조회 2,705
PHP 16-12-30 조회 2,916
PHP 16-12-30 조회 3,311
PHP 16-12-29 조회 3,021
PHP 16-12-29 조회 3,509
PHP 16-12-29 조회 2,946
PHP 16-12-28 조회 2,586
PHP 16-12-28 조회 2,924
PHP 16-12-28 조회 3,022
PHP 16-12-27 조회 5,548
PHP 16-12-27 조회 2,992
PHP 16-12-27 조회 2,605
PHP 16-12-26 조회 3,221
PHP 16-12-26 조회 2,569
PHP 16-12-26 조회 2,645
PHP 16-12-23 조회 3,982
PHP 16-12-23 조회 2,757
PHP 16-12-23 조회 3,653