<?php class Punkt{ var $x; var $y; } $p=new Punkt; $p->x=10; echo $p->x; ?>