Come posso convertire gli spazi nella stringa in %20
?
Ecco il mio tentativo:
$str = "What happens here?";
echo urlencode($str);
L'output è "What+happens+here%3F"
, quindi gli spazi non sono rappresentati come %20
.
Che cosa sto facendo di sbagliato?