Function __global->rawurldecode

Definitions

sources_custom/phpstub.php

  • Decode URL-encoded strings.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: string

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$str string No No required parameter N/A N/A The string to decode

Returns

  • Decoded string
  • Type: string
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Decode URL-encoded strings.
 *
 * @param  string $str The string to decode
 * @return string Decoded string
 */

function rawurldecode(string $str) : string