class DateTime { private $timestamp; // standardowy unix timestamp public function equals(DateTime $other) { return $this->timestamp === $other->timestamp; } public function compareTo(DateTime $other) { return $this->timestamp - $other->timestamp; } }