Is there a way to delete attributes from a TStaticVar so that it isn't returned from obj.getdynamicvarnames() ?
I know if you create such a function like...
PHP Code:
function Test() {
temp.obj = new TStaticVar();
obj.val = 5;
obj.destroy();
}
This would destroy the object, obviously. I need something more like...
PHP Code:
function Test() {
temp.obj = new TStaticVar();
obj.val = 5;
obj.val.destroy();
}
I've tried using .destroy() on the attribute, and setting it to NULL + using clearemptyvars(), but neither of those work.
Any help would be appreciated
