Forum und email

urldecode

(PHP 4, PHP 5)

urldecode — Αποκωδικοποιεί ένα URL-κωδικοποιημένο string

Περιγραφή

string urldecode ( string $str )

Αποκωδικοποιεί οποιοδήποτε%## ενώ κωδικοποιεί στο string που έχει δοθεί. Το αποκωδικοποιημένο string επιστρέφεται.

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 />\n";
    
$i++;
}
?>

Δείτε επίσης: urlencode(), rawurlencode(), rawurldecode().