urldecode 解码已编码的 URL 字符串


urldecode

(PHP 4, PHP 5)

urldecode解码已编码的 URL 字符串

说明

string urldecode ( string $str )

解码给出的已编码字符串中的任何 %##。返回解码后的字符串。

Example #1 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 /> ";
    
$i++;
}
?>

参见 urlencode()rawurlencode()rawurldecode()


«  unset
» urlencode
快速导航

Copyright © 2016 phpStudy | 豫ICP备2021030365号-3