Help | Site Map
Connecting Tech Pros Worldwide
 
 
LinkBack Thread Tools
  #1  
Old July 17th, 2005, 09:40 AM
harryman100
Guest
 
Posts: n/a
Default Best method of doing simple flags

Hi,

Currently when I want to set a flag to detect later on in the script,
I do this:

$something_flag = 1;

then later on in the script:

if ($something_flag) {
do_something();
}

Is this the best way of doing simple yes/no tests in PHP, or is there
another way I haven't discovered yet?

Thanks,
Harry
  #2  
Old July 17th, 2005, 09:40 AM
Alvaro G. Vicario
Guest
 
Posts: n/a
Default Re: Best method of doing simple flags

*** harryman100 escribió/wrote (18 Sep 2004 06:05:55 -0700):[color=blue]
> $something_flag = 1;
>
> then later on in the script:
>
> if ($something_flag) {
> do_something();
> }
>
> Is this the best way of doing simple yes/no tests in PHP, or is there
> another way I haven't discovered yet?[/color]

Using TRUE or FALSE instead of 1 and 0 is almost the same, but slightly
clearer. Other than that, I see nothing wrong in your method.


--
-+ Álvaro G. Vicario - Burgos, Spain
+- http://www.demogracia.com (la web de humor barnizada para la intemperie)
++ Las dudas informáticas recibidas por correo irán directas a la papelera
-+ I'm not a free help desk, please don't e-mail me your questions
--
  #3  
Old July 17th, 2005, 09:40 AM
Berislav Lopac
Guest
 
Posts: n/a
Default Re: Best method of doing simple flags

On 18 Sep 2004 06:05:55 -0700, harryman100 wrote:
[color=blue]
> Hi,
>
> Currently when I want to set a flag to detect later on in the script,
> I do this:
>
> $something_flag = 1;
>
> then later on in the script:
>
> if ($something_flag) {
> do_something();
> }
>
> Is this the best way of doing simple yes/no tests in PHP, or is there
> another way I haven't discovered yet?[/color]

Only slightly better is to use actual boolean values, i.e. $something_flag
= true;

That way there is no integer to boolean conversion.

Berislav
 

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over network members.
Post your question now . . .
It's fast and it's free

Popular Articles