Mega Code Archive

 
Categories / Php / HTML
 

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

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