Structures (records)

<?php

//In PHP there are no structures
class ColorPoint {
    //Fields
    public $x, $y;

    //In PHP there are no computed properties
    public $Color;
}