in reply to NULL Variables
Cheers - L~Rmy $var; # undefined $var = undef; # explicitly set to undefined undef $var; # explicitly set to undefined $var = ''; # defined, but empty - will test false $var = 0; # defined with a value - which will test false $var = \0; # defined with a value of null
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: NULL Variables
by dwalsh27 (Initiate) on Feb 04, 2004 at 19:34 UTC | |
by Limbic~Region (Chancellor) on Feb 04, 2004 at 20:22 UTC |