- Output for 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.30, 8.2.0 - 8.2.25, 8.3.0 - 8.3.13
- array(0) { }
- Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33
- array(3) { [0]=> string(4) "date" [1]=> string(13) "timezone_type" [2]=> string(8) "timezone" }
<?php
$date = new DateTime();
$reflection = new ReflectionObject($date);
$props = [];
foreach ($reflection->getProperties() as $p) {
$props[] = $p->getName();
}
var_dump($props);