Re: Re: Avoiding NOTICEs on Array References

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Michael Sims wrote:
Jochem Maas wrote:

trlists@xxxxxxxxxx wrote:

If one must check the value and not just the existence of the
checkbox entry, or for other uses, e.g. where a flag may or may not
be present, one is saddled with clumsy constructs like:

	if (($isset($array['index']) && ($array['index'] == 1)) ...


okay, I get where your coming from - indeed nasty business them checkboxes.


Here's an approach that I like which I think cuts down on the clumsy
constructs.

I'm surprised that no one mentioned

if (array_key_exists("index",$array)) { /* .. */ }

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux