$array */ public static function convertBiomeColors(array $array) : string{ $result = str_repeat("\x00", 256); foreach($array as $i => $color){ $result[$i] = chr(($color >> 24) & 0xff); } return $result; } }