3
votes
6answers
84 views
What’s the difference between !== and != in PHP? [closed]
Possible Duplicate:
php == vs === operator
What's the difference between !== and != in PHP?
3
votes
5answers
160 views
Odd Perl conditional operator behavior
I'm doing some work in Perl and I ran across an odd result using the conditional operator.
The code in question:
($foo eq "blah") ? @x = @somearray : @y = ("another","array");
…
0
votes
5answers
128 views
javascript if alternative
what does this bit of code represent? I know its some kind of if alternative syntax ..
pattern.Gotoccurance.score != null ? pattern.Gotoccurance.score : '0'
tnx
QUESTION UPDATE …
10
votes
4answers
585 views
Conditional operator differences between C and C++
I read somewhere that the ?: operator in C is slightly different in C++, that there's some source code that works differently in both languages. Unfortunately, I can't find the tex …
3
votes
4answers
50 views
Comparison of conditional statements.
Are following ways are same.(Considering the evaluation time)
if(Condition1)
{
//code1
}
else
{
//code2
}
condition1 ? code1 : code2
Are they just synt …
0
votes
6answers
132 views
conditional operator shortcut in PHP?
Does anybody know if there is a shortcut for the following statement in PHP?
$output = isset($some_value) ? $some_value : "Some Value Not Set";
echo $output;
This something that …
16
votes
8answers
465 views
why do we prefer ? to ?? operator in c#?
I recently found that we can use ?? operator to check nulls. Please check the below code samples:
var res = data ?? new data();
This is exactly similar to
var res = (dat …
4
votes
6answers
199 views
if(condition, then, else) in Oracle
Hey all,
MySQL/MSSQL has a neat little inline if function you can use within queries to detect null values, as shown below.
SELECT
...
foo.a_field AS "a_field",
SELECT if(foo.b …
3
votes
3answers
153 views
What happens when you have a conditional operator and a postfix conditional in the same Perl statement?
Can anybody explain how this line works?
return $y < 0 ? - pip2 : pip2 if $x == 0;
if $y <0 it returns -pip2, but what it returns when $y >= 0 and $x != 0 ?
This line …
2
votes
7answers
120 views
why can’t conditional operator be used as a statement
Why can't the conditional operator be used as a statement?
I would like to do something like:
boolean isXyz = ...;
...
isXyz ? doXyz() : doAbc();
where doXyz and doAbc are retu …
10
votes
8answers
432 views
What is the PHP ? : operator called and what does it do?
Can someone please explain what the "?" and ":" operators are in PHP?
e.g.:
(($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER)
1
vote
7answers
203 views
PHP Conditional Operator and Self Assignment
Is this sort of thing considered OK in PHP?
$foo = $_GET['foo'];
$foo = empty($foo) || !custom_is_valid($foo) ? 'default' : $foo;
Are there cleaner alternatives to this? I'm bas …
2
votes
9answers
490 views
C# conditional AND (&&) OR (||) precedence
We get into unnecessary coding arguments at my work all-the-time. Today I asked if conditional AND (&&) or OR (||) had higher precedence. One of my coworkers insisted that …
0
votes
4answers
72 views
Visually Optimizing JS Conditional Operators that are stringed together
In Js let's say we have the following code
var test = 'd';
if (test != 'a' && test != 'b' && test != 'c')
alert('were good to go');
This if seems rather length …
1
vote
9answers
189 views
Conditional operator with only true statement
I want to set a variable to a value, but only if a condition is true.
Instead of doing the following:
if($myarray["foo"]==$bar){
$variablename=$myarray["foo"];
}
This c …
