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;
}
}
?>