<?php class Example { public $unset; public function __construct() { unset($this->unset); } } var_dump(get_class_vars(Example::class)); var_dump(get_object_vars(new Example()));
You have javascript disabled. You will not be able to edit any code.