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); á $strTest='holá'; for($i = 0, $n = mb_strlen($strTest); $i < $n; $i++) { $mbchar = mb_substr($strTest, $i, 1); echo 'current char: '.$mbchar.'\n<br/>'; echo 'uniord= '.uniord($mbchar).'\n<br/>'; echo 'prev char= '.utf8(dechex(uniord($mbchar)-1)).'\n<br/>'.'\n<br/>'; }
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/RrNeM 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/RrNeM on line 13 Deprecated: Array and string offset access syntax with curly braces is deprecated in /in/RrNeM on line 14 Deprecated: Array and string offset access syntax with curly braces is deprecated in /in/RrNeM on line 15 Deprecated: Array and string offset access syntax with curly braces is deprecated in /in/RrNeM on line 16 current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: á\n<br/>uniord= 225\n<br/> Warning: chr() expects parameter 1 to be int, string given in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>
Output for 7.3.32 - 7.3.33
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= \n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= \n<br/>\n<br/>current char: á\n<br/>uniord= 225\n<br/>prev char= \n<br/>\n<br/>
Output for 5.6.7 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.0 - 7.2.33, 7.3.12 - 7.3.31
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: á\n<br/>uniord= 225\n<br/>prev char= \n<br/>\n<br/>
Output for 5.4.34 - 5.4.45, 5.5.24 - 5.5.35
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.32
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.32\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.32\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.31
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.31\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.31\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.30
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.30\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.30\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.29
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.29\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.29\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.28
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.28\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.28\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.27
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.27\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.27\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.26
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.26\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.26\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.25
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.25\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.25\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.24
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.24\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.24\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.23
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.23\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.23\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.22
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.22\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.22\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.21
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.21\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.21\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.20
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.20\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.20\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.19
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.19\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.19\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.18
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.18\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.18\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.17
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.17\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.17\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.16
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.16\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.16\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.15
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.15\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.15\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.14
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.14\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.14\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.13
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.13\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.13\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.12
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.12\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.12\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.11
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.11\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.11\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.10
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.10\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.10\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.9
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.9\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.9\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.8
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.8\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.8\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.7
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.7\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.7\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.6
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.6\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.6\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.5
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.5\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.5\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.4
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.4\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.4\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.3
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.3\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.3\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.2
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.2\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.2\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.1
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.1\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.1\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.4.0
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.0\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.4.0\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.29
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.29\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.29\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.28
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.28\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.28\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.27
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.27\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.27\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.26
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.26\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.26\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.25
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.25\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.25\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.24
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.24\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.24\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.23
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.23\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.23\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.22
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.22\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.22\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.21
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.21\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.21\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.20
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.20\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.20\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.19
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.19\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.19\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.18
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.18\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.18\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.17
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.17\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.17\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.16
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.16\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.16\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.15
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.15\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.15\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.14
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.14\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.14\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.13
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.13\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.13\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.12
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.12\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.12\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.11
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.11\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.11\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.10
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.10\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.10\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.9
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.9\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.9\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.8
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.8\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.8\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.7
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.7\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.7\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.6
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.6\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.6\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.5
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.5\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.5\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.4
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.4\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.4\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.3
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.3\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.3\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.2
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.2\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.2\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.1
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.1\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.1\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.3.0
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.0\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/> Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= 5.3.0\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: A non well formed numeric value encountered in /in/RrNeM on line 4 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.17
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.17\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.17\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.16
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.16\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.16\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.15
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.15\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.15\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.14
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.14\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.14\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.13
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.13\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.13\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.12
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.12\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.12\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.11
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.11\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.11\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.10
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.10\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.10\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.9
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.9\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.9\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.8
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.8\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.8\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.7
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.7\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.7\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.6
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.6\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.6\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.5
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.5\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.5\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.4
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.4\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.4\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.3
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.3\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.3\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.2
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.2\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.2\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.1
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.1\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.1\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.2.0
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.2.0\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.2.0\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.1.6
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.1.6\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.1.6\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.1.5
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.1.5\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.1.5\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.1.4
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.1.4\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.1.4\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.1.3
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.1.3\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.1.3\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.1.2
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.1.2\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.1.2\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.1.1
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.1.1\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.1.1\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.1.0
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.1.0\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.1.0\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.0.5
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.0.5\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.0.5\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.0.4
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.0.4\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.0.4\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.0.3
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.0.3\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.0.3\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.0.2
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.0.2\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.0.2\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.0.1
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.0.1\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.0.1\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 5.0.0
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 5.0.0\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 5.0.0\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.4.9
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.4.9\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.4.9\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.4.8
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.4.8\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.4.8\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.4.7
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.4.7\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.4.7\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.4.6
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.4.6\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.4.6\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.4.5
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.4.5\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.4.5\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.4.4
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.4.4\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.4.4\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.4.3
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.4.3\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.4.3\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.4.2
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.4.2\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.4.2\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.4.1
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.4.1\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.4.1\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.4.0
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.4.0\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.4.0\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.3.11
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.3.11\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.3.11\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.3.10
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.3.10\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.3.10\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.3.9
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.3.9\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.3.9\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.3.8
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.3.8\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.3.8\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.3.7
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.3.7\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.3.7\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.3.6
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.3.6\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.3.6\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.3.5
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.3.5\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.3.5\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.3.4
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.3.4\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.3.4\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.3.3
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.3.3\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.3.3\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.3.2
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.3.2\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.3.2\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.3.1
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= 4.3.1\n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= 4.3.1\n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>
Output for 4.3.0
current char: h\n<br/>uniord= 104\n<br/>prev char= C\n<br/>\n<br/>current char: o\n<br/>uniord= 111\n<br/>prev char= \n<br/>\n<br/>current char: l\n<br/>uniord= 108\n<br/>prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 uniord= 64\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 prev char= \n<br/>\n<br/>current char: �\n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 uniord= \n<br/> Notice: Uninitialized string offset: 1 in /in/RrNeM on line 14 Notice: Uninitialized string offset: 2 in /in/RrNeM on line 15 Notice: Uninitialized string offset: 3 in /in/RrNeM on line 16 prev char= \n<br/>\n<br/>

preferences:
206.63 ms | 403 KiB | 313 Q