User Tools

Site Tools


uphp:functions:urldecode

This is an old revision of the document!


urldecode

WMMEGA FW >= 2.1179

URL-decode a string

Description

string urldecode ( string $data )

Decodes any %## encoding in the given string. Plus symbols ('+') are decoded to a space character.

Parameter

$data: String to be decoded

Return Values

String with certain characters replaced.

Examples

<?
  $data="%23G%282BH%29"
  $send=urldecode($data);
  print($send); // #G(2BH)
?>
uphp/functions/urldecode.1611722906.txt.gz · Last modified: 2021/09/13 05:56 (external edit)