'; print_r($obj); echo ''; } class Page { protected $title; protected $content; public function __construct(string $title = '', string $content = '') { $this->title = $title; $this->content = $content; } } ?>