Utilisateur:KelBot/urlencode.php

From Wikipedia, the free encyclopedia

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

if ($txt == "") {

 $txt = fread(STDIN, 2048);

}

echo urlencode($txt); exit; ?>

Related Articles

Wikiwand AI