curl_unescape

(PHP 5 >= 5.5.0, PHP 7)

curl_unescapeDecodes the given URL encoded string

설명

string curl_unescape ( resource $ch , string $str )

This function decodes the given URL encoded string.

인수

ch

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

str

The URL encoded string to be decoded.

반환값

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

예제

Example #1 curl_escape() example

<?php
// Create a curl handle
$ch curl_init('http://example.com/redirect.php');

// Send HTTP request and follow redirections
curl_setopt($chCURLOPT_FOLLOWLOCATION1);
curl_exec($ch);

// Get the last effective URL
$effective_url curl_getinfo($chCURLINFO_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);
?>

주의

Note:

curl_unescape() does not decode plus symbols (+) into spaces. urldecode() does.

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top