Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
6answers
258 views

PHP if shorthand

I have a string that I want to append it some other string. let's say: $my_string = 'Hello'; $my_string .= ' there'; this would return 'Hello there'. I want to make this conditional like this: ...
3
votes
5answers
2k views

Shorthand if + nullable types (C#)

The following returns Type of conditional expression cannot be determined because there is no implicit conversion between 'double' and '<null>' aNullableDouble = (double.TryParse(aString, ...
2
votes
2answers
3k views

How do I use shorthand if / else?

I've tried using the examples from this page, but I can't output any results. This is my IF statement that works: if (!empty($address['street2'])) echo $address['street2'].'<br />'; And this ...
1
vote
4answers
60 views

Shorthand if not running or evaluating

I'm basically checking a users download limit in my database, and if their limit is < 1 I want to disable a input on my page. <input type="text" name="link"<?php ($page["downloads_left"] ...
1
vote
3answers
1k views

Short hand if statment

Is there a shorter version of the following: Using ASP.NET MVC, this is in the HTML page <%= IsTrue ? Html.Image("~/images/myimage.gif") : "" %> I know I'm only really writing 3 extra ...
0
votes
1answer
125 views

javascript shorthand if the else callback

the long hand if in javascript would look: function somefunction(param){ if(typeof(param) != 'undefined'){ var somevar = param; } else { alert('ERROR: missing ...
0
votes
5answers
101 views

Echo with Shorthand If not behaving properly

I'm programming in PHP, I'm using a 'shorthand if' to echo some HTML code on to the page, but it is behaving in odd ways. echo '<div id="filter_bar"> <ul>'; echo '<li><a ...
0
votes
3answers
210 views

Multiple statements if condition is true in shorthand if

I recently discovered the shorthand if statement and after searching online I couldn't find a definite answer. Is it possible to execute 2 statements if the condition is true/false? int x = ...