--TEST-- PHP Spec test generated from ./classes/dynamic_properties2.php --FILE-- color)); $v = $p->color; // get the dynamic property "color" var_dump($v); $p->color = "red"; // create/set the dynamic property "color" $v = $p->color; // get the dynamic property "color" isset($p->color); // test if (dynamic or not) "color" property exists unset($p->color); // remove the property "color" --EXPECTF-- bool(false) Notice: Undefined property: Point::$color in %s/classes/dynamic_properties2.php on line 9 NULL