Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Regarding if statements in PHP

this is a simple question. But Here I need to know how if condition work with only one variable.

$category='';

if ($category) {

}

can you tell what actually check in If condition? Condition has only one variable..

is it checking variable is TRUE or FALSE?

share|improve this question
1  
Yes It is checking TRUE or FALSE. If expression evaluates to TRUE, PHP will execute statement, and if it evaluates to FALSE - it'll ignore it. – Roopendra Jan 14 at 12:42
Every expression is (sooner or later) evaluatable to a boolean value and if expects one ;) – KingCrunch Jan 14 at 12:53
Thanks for all answers... I understood clearly. Thanks again. – TNK Jan 14 at 13:16

marked as duplicate by Alex, Yogesh Suthar, Veger, KingCrunch, ithcy Jan 14 at 16:23

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

8 Answers

up vote 3 down vote accepted

PHP is a weak typed language. To understand what is evaluated in the if condition, see the conversion rules for booleans.

Quoting from the manual:

When converting to boolean, the following values are considered FALSE:

  • the boolean FALSE itself
  • the integer 0 (zero)
  • the float 0.0 (zero)
  • the empty string, and the string "0"
  • an array with zero elements
  • an object with zero member variables (PHP 4 only)
  • the special type NULL (including unset variables)
  • SimpleXML objects created from empty tags

Therefore, your condition will be evaluated as FALSE, since $category == '' and (bool) '' === FALSE

share|improve this answer

Type 1

$category = '';
if ($category) {
   echo 'category';
} else {
   echo 'no category';
}

// Output : no category

Type 2

$category = TRUE;
if ($category) {
   echo 'category';
} else {
   echo 'no category';
}

// Output : category

Type 3

$category = '';
if (!empty($category)) {
   echo 'category';
} else {
   echo 'no category';
}

// Output : no category

Type 4

$category = 0;
if (!empty($category)) {
   echo 'category';
} else {
   echo 'no category';
}

// Output : no category

Type 5

$category = 0;
if (isset($category)) {
   echo 'category';
} else {
   echo 'no category';
}

// Output : category

share|improve this answer

this will check for TRUE

if ($category) {

}
share|improve this answer

You empty string will be casted to a boolean value, false in this case. See the manual on Booleans.

share|improve this answer

This checks whether variable evaluates to true, it's an equivalent of:

if( (bool)$category === true) )
share|improve this answer

Yes It is checking TRUE or FALSE. If expression evaluates to TRUE, PHP will execute statement, and if it evaluates to FALSE - it'll ignore it.

share|improve this answer

if ($category) {

}

Will simply check if $category has a value. You did not give $category a value. In this case, it will give a FALSE.

share|improve this answer
1  
Not true, example: $category = '0'. It has a value but if($category) will still evaluate to false. – MrCode Jan 14 at 12:45

The block of the if-condition activates whenever the evaluated statement is true.

The empty string in PHP evaluates to false, so this will not be activated. You could be more specific by specifying what you expect, for example:

   $category = '';
   if (empty($category)) {

   }

... in case you expect this to activate whenever it is empty. It really depends on what you are trying to to but like this I assume the condition is never met.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.