i'd like also to have a way to add anonymous func to null object
$obj = (object) NULL;
// or tha same - $obj = new stdClass();
now i can add properties to this object
$value = 'string';
$obj->properties = $value;
but i cant add methods like this
$obj->method = create_function('','return 'this is class method';');
it will be very use full to create objects on fly in this way.