Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

boolean in if statement

Tags:

php

If I want to execute code only if a variable is true, should I have:

if ($option) { /* code */ }

or

if ($option == TRUE) { /* code */ }

Doesn't the first one imply that also values like 1, 2, 3 etc. will execute the code.

Is the second one the better option?

like image 498
ajsie Avatar asked Apr 01 '26 03:04

ajsie


1 Answers

I think what you are looking for is the === operator. The manual gives a decent description of the various comparison operators.

The === operator compares type as well as value.

You may also be interested in the PHP Caparison Tables. They will describe how the comparison operators work when comparing two different types.

like image 150
MitMaro Avatar answered Apr 03 '26 16:04

MitMaro



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!