Just to clear up, there is no isempty() function - the correct function is empty() and its details can be found here: http://uk.php.net/empty

Cheers

Chris

-{ Rene Brehmer }- wrote:

At 01:54 20-09-2004, Chris Mach wrote:

What is the best way to determine if a variable is empty?

I have a feeling there is a better way than the way I'm doing it now...

if ($variable == "")


there's 2:

if (isset($variable))

or

if (isempty($variable))

what's most appropriate depends on how the variable is set or not


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



Reply via email to