if I have a member function
function makemea($type) {
$this= new $type ();
}
within a class (yes, I really need something like this for something I'm doing, and it's a superevil secret), will this be mainly safe? I'm not concerned about losing member vars, I just mean will this do evil things to the interpreter or cause memory leaks or anything? 🙂
--hobbs