(PHP 5 >= 5.5.0, PHP 7)
curl_unescape — URL エンコードされた文字列をデコードする
$ch
, string $str
)この関数は、URL エンコードされた文字列をデコードします。
ch
curl_init() が返す cURL ハンドル。
str
デコード対象の文字列。
デコードした文字列を返します。失敗した場合に FALSE
を返します。
例1 curl_escape() の例
<?php
// curl ハンドルを作ります
$ch = curl_init('http://example.com/redirect.php');
// HTTP リクエストを送信し、リダイレクトにしたがいます
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_exec($ch);
// 直近の実効 URL を取得します
$effective_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
// "http://example.com/show_location.php?loc=M%C3%BCnchen"
// URL をデコードします
$effective_url_decoded = curl_unescape($ch, $effective_url);
// "http://example.com/show_location.php?loc=München"
// ハンドルを閉じます
curl_close($ch);
?>
注意:
curl_unescape() は、プラス記号 (+) をスペースに変換しません。 urldecode() は、この変換をします。