Code Duplication    Length = 5-5 lines in 2 locations

Sources/Load.php 2 locations

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