Code Duplication    Length = 5-5 lines in 2 locations

Sources/Load.php 2 locations

@@ 103-107 (lines=5) @@
100
				$new_string .= $string[$i];
101
				$i++;
102
			}
103
			elseif ($ord < 224)
104
			{
105
				$new_string .= $string[$i] . $string[$i+1];
106
				$i += 2;
107
			}
108
			elseif ($ord < 240)
109
			{
110
				$new_string .= $string[$i] . $string[$i+1] . $string[$i+2];
@@ 108-112 (lines=5) @@
105
				$new_string .= $string[$i] . $string[$i+1];
106
				$i += 2;
107
			}
108
			elseif ($ord < 240)
109
			{
110
				$new_string .= $string[$i] . $string[$i+1] . $string[$i+2];
111
				$i += 3;
112
			}
113
			elseif ($ord < 248)
114
			{
115
				// Magic happens.