Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * URL-encode according to RFC 3986 * * @phpstub * * @param string $str * ..
Decoded Output download
<?php
/**
* URL-encode according to RFC 3986
*
* @phpstub
*
* @param string $str
*
* @return string Returns a string in which all non-alphanumeric characters except
* have been replaced with a percent
* () sign followed by two hex digits. This is the
* encoding described in for
* protecting literal characters from being interpreted as special URL
* delimiters, and for protecting URLs from being mangled by transmission
* media with character conversions (like some email systems).
*/
function rawurlencode($str)
{
} ?>
Did this file decode correctly?
Original Code
<?php
/**
* URL-encode according to RFC 3986
*
* @phpstub
*
* @param string $str
*
* @return string Returns a string in which all non-alphanumeric characters except
* have been replaced with a percent
* () sign followed by two hex digits. This is the
* encoding described in for
* protecting literal characters from being interpreted as special URL
* delimiters, and for protecting URLs from being mangled by transmission
* media with character conversions (like some email systems).
*/
function rawurlencode($str)
{
}
Function Calls
None |
Stats
MD5 | 6d4dba16cf487a2f5a3b93200720f48c |
Eval Count | 0 |
Decode Time | 130 ms |