结构(记录)

<?php

//In PHP there are no structures
interface IText {
    function toText(): string;
}

class Point implements IText {
    public $x, $y;

    function toText(): string {
        return "x = $this->x; y = $this->y";
    }
}

class RedPoint extends Point { }