title = $title; // Lorem ipsum $this->content = $content; // 吾輩は猫である } public function getSummary() { return $this->title . ": " . $this->content; } } // Test execution $doc = new TestDocument("Lorem ipsum", "吾輩は猫である。名前はまだない。"); echo $doc->getSummary() . "\n"; ?>