<?php
class Struct {
public $id = '';
public $name = '';
public $color = '';
public function __construct($id, $name, $color) {
$this->id = $id;
$this->name = $name;
$this->color = $color;
}
}
$array = [new Struct(0, 'name', '#d00'), new Struct(1, 'name2', '#0d0')];
echo $array[0]->name;
?>