-5
votes
3answers
50 views

Using Logical Operators in PHP if/else [closed]

Is it possible to use logical operators in the "then" part of the if/then statement in PHP? This is my code: if ($TMPL['duration'] == NULL) { $TMPL['duration'] = ('120' or '124' or '114' or '138'); ...
0
votes
2answers
41 views

Long logical operator comparisons

I have three variables which determine an outcome. There is only two outcomes but the outcome is based on the variables. I have thought up some long if statements but I am wondering if there is a ...
-1
votes
1answer
61 views

php IF OR format?

This works If ($flag != 'u') { stuff.. } This also works. If ($id != 0) { stuff.. } But these don't seem to work for me.... If ( ($flag != 'u') || ($id != 0) ) { stuff.. } If ( ($flag != 'u') ...
1
vote
3answers
87 views

PHP logical operators in IF statement

I have this code: if ( ($oldTime < (time() - self::wait)) ) { if ($this->setTime()) { return true; } else { return false; } } else { return false; } Can i replace it ...
0
votes
3answers
162 views

Python “if” statement ignored [duplicate]

Possible Duplicate: Multiple conditions with if/elif statements I'm triggering loop within loop in Python, if one of the multiple conditions ("or") is met. The script seems to skip the "if" ...
0
votes
3answers
33 views

Amount of logical combinations

My brain seems to be stoped, and I am looking for a help. I have the following variables: $start_t = 1; $start_n = 2; $end_t = 6; $end_n = 5; and I like to check all the logical combinations ...
-1
votes
3answers
109 views

Do all logical OR separated checks in an if get processed prior to execution of the code within?

Suppose I had an if statement in a method like so: if ( foo() || bar() ) { return true; } Would both foo() and bar() both be processed entirely before assessing whether to execute the code ...
0
votes
5answers
67 views

PHP if Statement with OR

I seem to be having a mysterious problem with the use of OR or || in a PHP if statement. My code is this: if ($region=='ibiza' || 'mallorca' || 'menorca' || 'andalucia' || 'basque' || 'cataluna' || ...
1
vote
2answers
112 views

what is wrong with my if -condition?

So I've been trying to figure out what is wrong with my if-condition, but I am getting nowhere. I am still new to R, so maybe I am not understanding some very basic concept here? I have a dataframe ...
-1
votes
2answers
74 views

translate javascript code to mode readable code with if and else [closed]

What that means? e[i] == "-" && (s > 1 || d === null) && ++s, !s && d !== null && (p.push(e[i]), s = 2), "+-".indexOf(e[i]) < (d = null) && (c = 1); ...
0
votes
2answers
380 views

Why can I not chain logical comparisons in an if statement?

I'm trying to execute a block of code if one of several conditions is met. Again, for clarity, if any of the conditions are true, I'd like for the code to execute (chain of logical ORs). When I type ...
1
vote
7answers
176 views

Correct IF indentation with PHP [closed]

I didn't find any Coding style guide to answer my question. I have a simple IF with nested braces and several logic operators. How should I indent this: if ( !$var || ( $this->var != ...
4
votes
2answers
6k views

How to solve && operands to logical scalar

After I run the code in matlab, I encounter this error and unsure how to solve it. How can I solve this problem. Warning: Operands to the || and && operators must be convertible to ...
5
votes
4answers
280 views

Is (4 > y > 1) a valid statement in C++? How do you evaluate it if so?

Is that a valid expression? If so, can you rewrite it so that it makes more sense? For example, is it the same as (4 > y && y > 1)? How do you evaluate chained logical operators?
1
vote
2answers
474 views

Execute 3 functions that return true/false and if all return true do something or else, no short circuiting

I have 3 JS functions a() b() c() I want to execute all 3 and also check if all 3 return true then I want to call function yeah() or else call function boo() I can use && but it will short ...
3
votes
11answers
560 views

How to write “if x equals 5 or 4 or 78 or…” in C

I have a quick question about using logical operators in an if statement. Currently I have an if statement that checks if x equals to 5 or 4 or 78: if ((x == 5) || (x == 4) || (x == 78)) { blah } ...
2
votes
7answers
314 views

Could this `if` statement generate a Null-Reference Exception ever?

I think my point is clear, under any condition, could this throw null-reference exception? i.e. objecting that e.Result is null while trying to access its Count property. if (e.Result == null || ...
2
votes
6answers
2k views

Order of operators in IF statement

I often do this when necessary to prevent a null pointer exception: // Example #1 if (cats != null && cats.Count > 0) { // Do something } In #1, I've always just assumed that the cats ...
7
votes
7answers
1k views

short hand for chaining logical operators in javascript?

Is there a better way to write the following conditional in javascript? if ( value == 1 || value == 16 || value == -500 || value == 42.42 || value == 'something' ) { // blah blah blah } I hate ...