<?php class Punkt{ var $x; var $y; function Punkt($uusX, $uusY){ $this->x=$uusX; $this->y=$uusY; } } $p=new Punkt(3, 5); echo $p->x; ?>