Re: [PHP] Re: Using constructs like unset() in expressions like ()()

2004-12-20 Thread Richard Lynch
Tomas Tintera wrote: Richard Lynch wrote: Perhaps something like this: function my_unset($var){ global $$var; $wasset = isset($$var); unset($$var); return $wasset; } my_unset(‘a‘); //unset($a); Or, in a more general way: function forcereturn ($php){

Re: [PHP] Re: Using constructs like unset() in expressions like ()()

2004-12-17 Thread Richard Lynch
Tomas Tintera wrote: Thanks for your answers (you probably don't understand me). I am looking for some construct (or statement or function) which allows to do this: ?php (True==False) or (construct_i_am_looking_for(unset($a))); ? Note that the unset() has no return value (and so it can't

[PHP] Re: Using constructs like unset() in expressions like ()()

2004-12-17 Thread Tomas Tintera
Richard Lynch wrote: Perhaps something like this: function my_unset($var){ global $$var; $wasset = isset($$var); unset($$var); return $wasset; } my_unset(a); //unset($a); Or, in a more general way: function forcereturn ($php){ return eval($php); } Damned if I understand *why* you want

[PHP] Re: Using constructs like unset() in expressions like ()()

2004-12-16 Thread Tomas Tintera
Thanks for your answers (you probably don't understand me). I am looking for some construct (or statement or function) which allows to do this: ?php (True==False) or (construct_i_am_looking_for(unset($a))); ? Note that the unset() has no return value (and so it can't be used as a part of other

[PHP] Re: Using constructs like unset() in expressions like ()()

2004-12-16 Thread Tomas Tintera
Thanks for your answers (you probably don't understand me). I am looking for some construct (or statement or function) which allows to do this: ?php (True==False) or (construct_i_am_looking_for(unset($a))); ? Note that the unset() has no return value (and so it can't be used as a part of other