Re: define (true/false)

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

 



On Wed, 2005-07-27 at 17:17 -0400, Sebastian wrote:
> i never really used constants before so this may sound stupid..
> when you define a constant using define() and want to return true/false 
> is this logical:
> 
> if($bars == 3)
> {
>     define('BAR', 1);
> }
> 
> then:
> 
> if(BAR)
> {
>     // bars is true
> }
> 
> or should i need to do an else statement as well:
> 
> if($bars == 3)
> {
>     define('BAR', 1);
> }
> else
> {
>    define('BAR', 0)
> }
> 
> lastly is it more practical to just do:
> 
> if($bars == 3)
> {
>       $bar = true;
> }
> 
> i am curious what most people would use.
> 
> 
> -- 
> No virus found in this outgoing message.
> Checked by AVG Anti-Virus.
> Version: 7.0.338 / Virus Database: 267.9.5/58 - Release Date: 7/25/2005
> 

That's an incorrect use for constants. Use variables for that =]

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