Utilisateur:KelBot/urldecode.php
From Wikipedia, the free encyclopedia
<syntaxhighlight lang="php"> <?php $txt = $argv[1];
if ($txt == "") {
$txt = fread(STDIN, 2048);
}
echo urldecode($txt); exit; ?>
From Wikipedia, the free encyclopedia
<syntaxhighlight lang="php"> <?php $txt = $argv[1];
if ($txt == "") {
$txt = fread(STDIN, 2048);
}
echo urldecode($txt); exit; ?>