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-encodes string * * @phpstub * * @param string $str * * @return str..

Decoded Output download

<?php

/**
 * URL-encodes string
 *
 * @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 and spaces encoded
 *                as plus () signs.  It is encoded the same way that the
 *                posted data from a WWW form is encoded, that is the same way as in
 *                media type. This
 *                differs from the  encoding (see
 *                ) in that for historical reasons, spaces
 *                are encoded as plus (+) signs.
 */
function urlencode($str)
{
} ?>

Did this file decode correctly?

Original Code

<?php

/**
 * URL-encodes string
 *
 * @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 and spaces encoded
 *                as plus () signs.  It is encoded the same way that the
 *                posted data from a WWW form is encoded, that is the same way as in
 *                media type. This
 *                differs from the  encoding (see
 *                ) in that for historical reasons, spaces
 *                are encoded as plus (+) signs.
 */
function urlencode($str)
{
}

Function Calls

None

Variables

None

Stats

MD5 c68aca7639d38505b22d3ee180e0c1cc
Eval Count 0
Decode Time 82 ms