You are absolutely right.


True = 1
False = 0

make an if statement, or echo ...

Cheers,
Maxim Maletsky



-----Original Message-----
From: Tim Ward [mailto:[EMAIL PROTECTED]]
Sent: Friday, February 16, 2001 6:41 PM
To: 'Toby Butzon'; Jonathan Sharp
Cc: [EMAIL PROTECTED]
Subject: RE: [PHP] True || False ?


to take this a step further, PHP doesn't seem to have types at all try ...

echo 1 + true; // gives 2
echo 1 . true; // gives 11

true is a constant that seems to equate to 1, false is 0. Or is this just my
interpretation?


        Tim Ward
        Senior Systems Engineer

Please refer to the following disclaimer in respect of this message:
http://www.stivesdirect.com/e-mail-disclaimer.html


> -----Original Message-----
> From: Toby Butzon [mailto:[EMAIL PROTECTED]]
> Sent: 16 February 2001 04:49
> To: Jonathan Sharp
> Cc: [EMAIL PROTECTED]
> Subject: Re: [PHP] True || False ?
> 
> 
> Yes, you can return false. 
> 
> As for "true booleans", PHP doesn't really have a boolean 
> type - it does
> have a sense of "true" and "not true" though. You can return false (a
> case-insensitive constant with the value 0) or true (whose value is
> probably 1 but could really be anything other than 0 or the empty
> string).
> 
> You can of course evaluate a true/false value as a regular 
> condition...
> if (someFunc()) {
>   // do something if someFunc returns true
> } else {
>   // do something if someFunc returns false
> }
> 
> ..You get the idea.
> 
> --toby
> 
> Jonathan Sharp wrote:
> > 
> > How does php handle true and false? Do they act as true booleans?
> > 
> > Can I do?
> > 
> > function foo()
> > {
> >         return false;
> > }
> > 
> > Thanks,
> > -Jonathan
> > 
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > To contact the list administrators, e-mail: 
> [EMAIL PROTECTED]
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to