3v4l.org

run code in 300+ PHP versions simultaneously
<?php function utf8($num) { if($num<=0x7F) return chr($num); if($num<=0x7FF) return chr(($num>>6)+192).chr(($num&63)+128); if($num<=0xFFFF) return chr(($num>>12)+224).chr((($num>>6)&63)+128).chr(($num&63)+128); if($num<=0x1FFFFF) return chr(($num>>18)+240).chr((($num>>12)&63)+128).chr((($num>>6)&63)+128).chr(($num&63)+128); return ''; } function uniord($c) { $ord0 = ord($c{0}); if ($ord0>=0 && $ord0<=127) return $ord0; $ord1 = ord($c{1}); if ($ord0>=192 && $ord0<=223) return ($ord0-192)*64 + ($ord1-128); $ord2 = ord($c{2}); if ($ord0>=224 && $ord0<=239) return ($ord0-224)*4096 + ($ord1-128)*64 + ($ord2-128); $ord3 = ord($c{3}); if ($ord0>=240 && $ord0<=247) return ($ord0-240)*262144 + ($ord1-128)*4096 + ($ord2-128)*64 + ($ord3-128); return false; } //echo uniord('á'); 225 //echo utf8(0xE1); á echo utf8(0x67); $strTest='holá'; for($i = 0, $n = mb_strlen($strTest); $i < $n; $i++) { $mbchar = mb_substr($strTest, $i, 1); echo 'current char: '.$mbchar.' '; echo 'uniord= '.uniord($mbchar).' '; echo 'prev dec= '.(uniord($mbchar)-1).' '; echo 'prev hex= '.dechex(uniord($mbchar)-1).' '; echo 'prev char= '.utf8(dechex(uniord($mbchar)-1)).' - '; }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Array and string offset access syntax with curly braces is no longer supported in /in/3cIDe on line 13
Process exited with code 255.
Output for 7.4.0 - 7.4.33
Deprecated: Array and string offset access syntax with curly braces is deprecated in /in/3cIDe on line 13 Deprecated: Array and string offset access syntax with curly braces is deprecated in /in/3cIDe on line 14 Deprecated: Array and string offset access syntax with curly braces is deprecated in /in/3cIDe on line 15 Deprecated: Array and string offset access syntax with curly braces is deprecated in /in/3cIDe on line 16 gcurrent char: h uniord= 104 prev dec= 103 prev hex= 67 prev char= C - current char: o uniord= 111 prev dec= 110 prev hex= 6e Notice: A non well formed numeric value encountered in /in/3cIDe on line 4 prev char=  - current char: l uniord= 108 prev dec= 107 prev hex= 6b Notice: A non well formed numeric value encountered in /in/3cIDe on line 4 prev char=  - current char: á uniord= 225 prev dec= 224 prev hex= e0 Warning: chr() expects parameter 1 to be int, string given in /in/3cIDe on line 4 prev char= -
Output for 7.3.32 - 7.3.33
gcurrent char: h uniord= 104 prev dec= 103 prev hex= 67 prev char= C - current char: o uniord= 111 prev dec= 110 prev hex= 6e prev char=  - current char: l uniord= 108 prev dec= 107 prev hex= 6b prev char=  - current char: á uniord= 225 prev dec= 224 prev hex= e0 prev char= -
Output for 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31
gcurrent char: h uniord= 104 prev dec= 103 prev hex= 67 prev char= C - current char: o uniord= 111 prev dec= 110 prev hex= 6e Notice: A non well formed numeric value encountered in /in/3cIDe on line 4 prev char=  - current char: l uniord= 108 prev dec= 107 prev hex= 6b Notice: A non well formed numeric value encountered in /in/3cIDe on line 4 prev char=  - current char: á uniord= 225 prev dec= 224 prev hex= e0 prev char= -
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38
gcurrent char: h uniord= 104 prev dec= 103 prev hex= 67 prev char= C - current char: o uniord= 111 prev dec= 110 prev hex= 6e Notice: A non well formed numeric value encountered in /in/3cIDe on line 4 prev char=  - current char: l uniord= 108 prev dec= 107 prev hex= 6b Notice: A non well formed numeric value encountered in /in/3cIDe on line 4 prev char=  - current char: � Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 uniord= 64 Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 prev dec= 63 Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 prev hex= 3f Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 Notice: A non well formed numeric value encountered in /in/3cIDe on line 4 prev char=  - current char: � Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 Notice: Uninitialized string offset: 2 in /in/3cIDe on line 15 Notice: Uninitialized string offset: 3 in /in/3cIDe on line 16 uniord= Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 Notice: Uninitialized string offset: 2 in /in/3cIDe on line 15 Notice: Uninitialized string offset: 3 in /in/3cIDe on line 16 prev dec= -1 Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 Notice: Uninitialized string offset: 2 in /in/3cIDe on line 15 Notice: Uninitialized string offset: 3 in /in/3cIDe on line 16 prev hex= ffffffffffffffff Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 Notice: Uninitialized string offset: 2 in /in/3cIDe on line 15 Notice: Uninitialized string offset: 3 in /in/3cIDe on line 16 prev char= -
Output for 5.2.10 - 5.2.17
gcurrent char: h uniord= 104 prev dec= 103 prev hex= 67 prev char= C - current char: o uniord= 111 prev dec= 110 prev hex= 6e prev char=  - current char: l uniord= 108 prev dec= 107 prev hex= 6b prev char=  - current char: � Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 uniord= 64 Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 prev dec= 63 Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 prev hex= 3f Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 prev char=  - current char: � Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 Notice: Uninitialized string offset: 2 in /in/3cIDe on line 15 Notice: Uninitialized string offset: 3 in /in/3cIDe on line 16 uniord= Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 Notice: Uninitialized string offset: 2 in /in/3cIDe on line 15 Notice: Uninitialized string offset: 3 in /in/3cIDe on line 16 prev dec= -1 Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 Notice: Uninitialized string offset: 2 in /in/3cIDe on line 15 Notice: Uninitialized string offset: 3 in /in/3cIDe on line 16 prev hex= ffffffffffffffff Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 Notice: Uninitialized string offset: 2 in /in/3cIDe on line 15 Notice: Uninitialized string offset: 3 in /in/3cIDe on line 16 prev char= -
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.9
gcurrent char: h uniord= 104 prev dec= 103 prev hex= 67 prev char= C - current char: o uniord= 111 prev dec= 110 prev hex= 6e prev char=  - current char: l uniord= 108 prev dec= 107 prev hex= 6b prev char=  - current char: � Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 uniord= 64 Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 prev dec= 63 Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 prev hex= 3f Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 prev char=  - current char: � Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 Notice: Uninitialized string offset: 2 in /in/3cIDe on line 15 Notice: Uninitialized string offset: 3 in /in/3cIDe on line 16 uniord= Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 Notice: Uninitialized string offset: 2 in /in/3cIDe on line 15 Notice: Uninitialized string offset: 3 in /in/3cIDe on line 16 prev dec= -1 Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 Notice: Uninitialized string offset: 2 in /in/3cIDe on line 15 Notice: Uninitialized string offset: 3 in /in/3cIDe on line 16 prev hex= ffffffffffffffff Notice: Uninitialized string offset: 1 in /in/3cIDe on line 14 Notice: Uninitialized string offset: 2 in /in/3cIDe on line 15 Notice: Uninitialized string offset: 3 in /in/3cIDe on line 16 prev char= -

preferences:
286.55 ms | 405 KiB | 457 Q