以下の内容はhttps://www.weblio.jp/content/urldecodeより取得しました。


PHP Documentation GroupPHP Documentation Group

urldecode

(PHP 4, PHP 5)
urldecode — URL エンコードされた文字列をデコードする

説明

string urldecode ( string str )
与えられた文字列中のあらゆるエンコード文字 %## をデコードします。

パラメータ

str
デコードする文字列。

返り値

デコードした文字列を返します。

例 2399. urldecode() の例
<?php
$a = explode('&', $QUERY_STRING);
$i = 0;
while ($i < count($a)) {
   $b = split('=', $a[$i]);
   echo 'Value for parameter ', htmlspecialchars(urldecode($b[0])),
         ' is ', htmlspecialchars(urldecode($b[1])), "<br />\n";
   $i++;
}
?>


参考

urlencode()
rawurlencode()
rawurldecode()





固有名詞の分類

PHP strchr  PHP-Nuke  urldecode  dbmdelete  dbmexists



以上の内容はhttps://www.weblio.jp/content/urldecodeより取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14