3v4l.org

run code in 300+ PHP versions simultaneously
<?php function urlRawDecode($raw_url_encoded) { # Hex conversion table $hex_table = array( 0 => 0x00, 1 => 0x01, 2 => 0x02, 3 => 0x03, 4 => 0x04, 5 => 0x05, 6 => 0x06, 7 => 0x07, 8 => 0x08, 9 => 0x09, "A"=> 0x0a, "B"=> 0x0b, "C"=> 0x0c, "D"=> 0x0d, "E"=> 0x0e, "F"=> 0x0f ); # Fixin' latin character problem if(preg_match_all("/\%C3\%([A-Z0-9]{2})/i", $raw_url_encoded,$res)) { $res = array_unique($res = $res[1]); $arr_unicoded = array(); foreach($res as $key => $value){ $arr_unicoded[] = chr( (0xc0 | ($hex_table[substr($value,0,1)]<<4)) | (0x03 & $hex_table[substr($value,1,1)]) ); $res[$key] = "%C3%" . $value; } $raw_url_encoded = str_replace( $res, $arr_unicoded, $raw_url_encoded ); } # Return decoded raw url encoded data return rawurldecode($raw_url_encoded); } print urlRawDecode("%C3%A1%C3%B1"); // output: // áñ ?>
Output for git.master, git.master_jit, rfc.property-hooks
��

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
46.52 ms | 401 KiB | 8 Q