<?php class Punkt{ var $x=3; var $y=5; } class RuumiPunkt extends Punkt{ var $z=6; } $p=new RuumiPunkt; echo $p->x." ".$p->y." ".$p->z; ?>