content[]="Titel: ".$tekst; } function content($content) { $this->content[]=$content; } function getContent() { return implode(" ",$this->content); } } class T2 extends Test { function __construct($content) { //$this->content($content); parent::__construct($content); } } $test = new T2("Dette skulle være en titel"); echo $test->getContent(); ?>