3.236.147.122 |    

Navigation

Google Advertisement

Die Funktion urldecode() dekodiert eine URL-kodierte Zeichenkette.

urldecode
  1. # ***************************************
  2. # This function decode an url.
  3.  
  4. sub urldecode {
  5.  
  6. my ($str) = shift;
  7. $str =~ s/([^a-zA-Z0-9_.-])/sprintf("%%%02x", ord($1))/ge;
  8. return $str;
  9.  
  10. }
Parsed in 0.002 seconds at 117.50 KB/s

Search
 
Full text search by name and content of a snippet.

User online
There are 8 users online.

Tags Cloud

Latest snippets
str2seconds
(Bash::Function)
is_integer
(Bash::Function)
file_rotate
(Bash::Function)
confirm
(Bash::Function)
is_workingtime
(Bash::Function)
last day of last month
(Bash::Snippets)
crypt_apr1_md5
(PHP::Function)
crypt_apr1_md5
(Perl::Function)
transparent
(CSS)
rfc2822Toiso8601
(PHP::Function)