* Thus wrote Carl Furst ([EMAIL PROTECTED]):
> IF $int is null and I have a test
>
> If($int < 1) {
> //do some foobar
> }
>
> will $int be evaluated as a zero? IF I cast (int) $int.. will that turn a
> null $int into a zero??
0
Curt
--
"I used to think I was indecisive, but now I'm not so
If I understood the question wouldn't this work???
if (!is_null($int) && $int < 1)
{
// do some foobar
}
Carl Furst wrote:
IF $int is null and I have a test
If($int < 1) {
//do some foobar
}
will $int be evaluated as a zero? IF I cast (int) $int.. will that turn a
null $int into a zero??
Docum
From: "Carl Furst" <[EMAIL PROTECTED]>
> IF $int is null and I have a test
>
> If($int < 1) {
> //do some foobar
> }
>
> will $int be evaluated as a zero? IF I cast (int) $int.. will that turn a
> null $int into a zero??
>
> Documentation aint too clear.
No idea what you're doing here, but you m
In the time you've waited for an answer so far, you could have made
yourself a 3 line script to find out.
Rob.
On Wed, 2003-09-24 at 11:30, Carl Furst wrote:
> IF $int is null and I have a test
>
> If($int < 1) {
> //do some foobar
> }
>
> will $int be evaluated as a zero? IF I cast (int) $int
IF $int is null and I have a test
If($int < 1) {
//do some foobar
}
will $int be evaluated as a zero? IF I cast (int) $int.. will that turn a
null $int into a zero??
Documentation aint too clear.
Thanks,
Carl.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://ww
5 matches
Mail list logo