Friday, November 21, 2025
HomeLanguagesPHP | rawurldecode() function

PHP | rawurldecode() function

The rawurldecode() function is an inbuilt function in PHP which is used to decode the encoded string. This function returns the decoded URL (original URL string) as a string. This function replaces the % sign followed by two hex value with literal characters.

Syntax:

string rawurldecode( $str )

Parameters: This function accepts single parameters $str which is mandatory. It is used to store the encoded URL.

Return Value: This function returns the decode URL string.

Below programs illustrate the rawurldecode() function in PHP.

Program 1:




<?php
    echo rawurldecode("A%20computer%20science%20portal%20for%20geek");
?>


Output:

A computer science portal for geek

Program 2:




<?PHP
$str = 'neveropen A computer science portal for geek';
 
// Encode the given string
$encode_str = rawurlencode($str);
echo "Encoded string: " . $encode_str . "<br>";
 
// Decode the encoded string
$decode_str = rawurldecode($encode_str);
echo "Decoded string: " . $decode_str;
?>


Output:

Encoded string: neveropen%20A%20computer%20science%20portal%20for%20geek
Decoded string: neveropen A computer science portal for geek

Related Articles:

Reference: http://php.net/manual/en/function.rawurldecode.php

RELATED ARTICLES

Most Popular

Dominic
32405 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6781 POSTS0 COMMENTS
Nicole Veronica
11928 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11995 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7165 POSTS0 COMMENTS
Thapelo Manthata
6862 POSTS0 COMMENTS
Umr Jansen
6847 POSTS0 COMMENTS