Re: isset

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

 



I've been using empty() for about 5 years, obeying the rules for empty() in the php manual
"Appendix P. PHP type comparison tables" and have never seen it generate any type of error message.

If you guys know of at least one exception, please clue us in on it.


Jim Lucas wrote:
Stut wrote:
tedd wrote:
At 4:08 PM +0100 4/16/07, Stut wrote:
Jim Lucas wrote:
Richard Kurth wrote:
What do you do when isset does not work? If I send data in a
$_REQUEST['var'] like if (isset($_REQUEST['var'])) {
}
Put var has no data it still says it is set. Because $_REQUEST['var'] = ""
and isset thinks "" is set

I use this combination a lot:

if ( isset($_GET['something']) && !empty($_GET['something']) ) {
    // do something here with $_GET['something']
}

The isset is a pointless waste of cycles.

-Stut

I've been accuse of that too, but what's your solution?

In the above example,

  if (isset($_GET['something']) && !empty($_GET['something'])) {

is the same as...

  if (!empty($_GET['something'])) {

So, in that particular line of code the isset is a pointless waste of cycles.

-Stut

these two lines are not the same infact, with the first, you will not get a E_NOTICE warning, but with the second you will.


--
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