Cameron,
On Mon, 19 Mar 2001, Cameron wrote:
> would be nice if isset would act the same as unset, being able to feed
> it more than 1 var at a time
>
> ie. if ( isset ( $blah1, $blah2 ) ) { blah blah }
This is probably a bad idea since isset() needs to return true or false
for each argument it receives. (Any other mode of operation is too
complicated).
This means that you need to return the values for each variable as an
array and that each value from the array needs to be tested. This results
in more typing than you would previously have been doing and is more
computationally intensive.
I suggest just stick with the current implementation.
Gavin
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]