Utilisateur:KelBot/urldecode.php

<syntaxhighlight lang="php"> <?php $txt = $argv[1];

if ($txt == "") {

 $txt = fread(STDIN, 2048);

}

echo urldecode($txt); exit; ?>