Bob Silva wrote:
> This makes perfect sense (to me at least):
>
> $localvar = isset($_REQUEST['globalvar'], "default value 1", ...);
>

The obvious problem there being that isset() currently takes multiple 
variables as arguments and checks that they're all set. From the manual:

bool isset ( mixed var [, mixed var [, ...]] )


Arpad

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to