nev = $nev; $this->ertek = $ertek; echo "
létrejött az $this->nev objektum
"; } public function __destruct() { echo "
megszunt az $this->nev
"; } public function getErtek(){ return $this->ertek; } public function setErtek($ertek){ $this->ertek = $ertek; } public function getNev(){ return $this->nev; } public function setNev($nev){ $this->nev = $nev; } } ?> ertek = "Tamás"; //$mezo1->setErtek("Tamás"); echo $mezo1->getErtek(); $mezo2 = new Mezo("Zsolt", 9); //$mezo2->setErtek("Zsolt"); echo $mezo2->getErtek(); ?>