string rawurldecode ( string str ) converts a %-escaped string into its original format, reversing the operation of rawurlencode( ) . : rawurldecode « HTML « PHP






string rawurldecode ( string str ) converts a %-escaped string into its original format, reversing the operation of rawurlencode( ) .

 
<?
    $name = 'P "H" P';
    $safe_name = rawurlencode($name);
  

    $unsafe_name = rawurldecode($name);
?>
  
  








Related examples in the same category

1.string rawurlencode ( string str ) converts non-alphabetic symbols into numerical equivalents preceded by a percent sign