<?php $date = new DateTime(); $reflection = new ReflectionObject($date); $props = []; foreach ($reflection->getProperties() as $p) { $props[] = $p->getName(); } var_dump($props);
You have javascript disabled. You will not be able to edit any code.