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

I've converting a lot of my code to the short hand IF statement to cut down loading time/code.

Most of these have been IF statements with ELSE's. However i can't seem to get it to work on just plain IF statements

($this->left_eye_sph >= 0) ? $this->transpose_left_eye()

Any suggestions?

share|improve this question
24  
How much time do you think this is saving you? – Paul Dixon Oct 13 '09 at 15:11
17  
shorter code does not necessarily mean faster code – Jeremy Cron Oct 13 '09 at 15:16
6  
shorter code also does not necessarily mean code that is easier to read. – jjclarkson Oct 13 '09 at 15:21
10  
so why not go the whole hog and lose the meaningful variable names too? ($this->les>=0)?$this->tle():0; – Paul Dixon Oct 13 '09 at 15:42
13  
I'm sorry, but this is really silly. This is an absolute extreme example of overthinking, the amount of time you are going to save is non-existant, on any standard PHP page. – LiamB Oct 13 '09 at 15:56
show 10 more comments

closed as not a real question by Jay Gilford, luser droog, Yogesh Suthar, Rikesh, sgar91 Mar 7 at 4:57

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

11 Answers

up vote 32 down vote accepted

Ternary expressions must have an ELSE piece. They cannot live without the : .

EDIT: It depends a bit on the context, but you could do something like this

($this->left_eye_sph >= 0) ? $this->transpose_left_eye() : NULL;

I would prefer

if($this->left_eye_sph >= 0)
    $this->transpose_left_eye();
share|improve this answer
could my code be used and add a blank else? – dotty Oct 13 '09 at 15:11
3  
Yep, that's reason it's called a ternary operator — it takes three operands. – Chuck Oct 13 '09 at 15:12
I decided to go with this answer if($this->left_eye_sph >= 0) $this->transpose_left_eye(); a one line approach – dotty Oct 13 '09 at 15:24
26  
I likw the way that loads of people tell you not to do this but you do it anyway. You stick to your gins and write crazy unreadable code - that'll teach them :) – Davy Oct 13 '09 at 15:42
php 5.3: ($this->left_eye_sph < 0) ?: $this->transpose_left_eye(); – localhost Jan 28 at 19:42

loading time, as in from the server. a 20k page loads faster than a 40k page

That’s just wrong. PHP code is not transferred from the server, it’s handled on the server. And I promise you, personally, that you won’t gain a single microsecond from your so-called “optimization”. Making PHP files minimally smaller will have no effect whatsoever on the performance of the PHP interpreter.

why the downvote?

Because, to put it bluntly, your plan seems stupid once you know that

  1. PHP code isn’t transferred to the client,
  2. Loading the PHP code from disc is easily the fastest part of running it
  3. by several orders of magnitude!
  4. What you want simply doesn’t work, at all, as a simple test will conclusively demonstrate.
  5. Even if all that were wrong, it would still be a bad idea because no trivial performance gain could justify such a drastic deterioration of the code quality.

(And I suspect that the downvoter thinks you’re pulling our leg.)

share|improve this answer
This is not an answer, but something that would be appropriate as a comment. – AsTeR May 25 '12 at 15:55
4  
@AsTeR I (and 22 other people) found it appropriate as an answer. Since the question was so horribly misguided, this is the closest thing to a constructive answer that you can get. The current answer, while technically correct in answering the question to the letter, still fails to address the actual problem here. And while I haven’t downvoted the accepted answer, I actually find it really bad. – Konrad Rudolph May 25 '12 at 15:59
2  
-1. Loading files from hard disk really is the slowest operation. That's why files are kept in ram. – Rok Kralj Nov 14 '12 at 12:07
@Rok Absolutely correct. I must have meant something else at the time when I wrote this answer but I can’t for the life of me remember what. – Konrad Rudolph Nov 14 '12 at 12:27
OK, I corrected to +1. :) – Rok Kralj Nov 14 '12 at 13:57

Ternary statements do not need an else clause.

Use $this->left_eye_sph >= 0 ?: $this->transpose_left_eye()

share|improve this answer
Forgot to add that the ?: (without false) is only available in PHP v5.3 – Simon Feb 10 '10 at 16:02
Documentation link. I've always thought this was an abuse of the Ternary Operator, as Ternary means three, and a ternary operator has 3 operands. C# did it with a ?? symbol instead, which I like a lot more, once I got over how insanely difficult it was to google when it first came out ('C# ??' used to return no results, now at least 'C# ?? operator' gets you the right page). – Patrick M Feb 13 at 21:05

To me, this type of refactoring don't save you a lot of time, if it save you time at all.

By the way, you can convert the if without the else branch with the && operator

($this->left_eye_sph >= 0) && $this->transpose_left_eye();
share|improve this answer
I thought that && always parses and executes both sides of the operator and the keyword 'and' stopped after the first one returns false. – Lex Oct 13 '09 at 15:24
3  
@Lex: nope. The difference between the two is the priority of execution (and and or have lower priority). See <de2.php.net/manual/en/language.operators.precedence.php>; – Konrad Rudolph Oct 13 '09 at 16:03

Also, for what it's worth, I have never read anywhere that shorthand is faster then simply wrinting if/else, also, this is widely considered less readable in most cases (not all!).

You should run a profiler and see where the real bottlenecks are, even if tenerary is faster I highly doubt it will make much of a difference.

share|improve this answer

You can just evaluate anything, e.g. a literal zero

($this->left_eye_sph >= 0) ? $this->transpose_left_eye() : 0;

But I would question your motives in converting if statements to conditional operators just because you think it will be more optimal. This surely can't be the number one bottleneck in your code?

In fact, even if you profiled your code and found that, unbelievably, "if" statements were the most time consuming call, then you can stop optimizing! You're done! You win the Internets!

share|improve this answer
1  
Agreed. Without some accurate profiling, you have no idea if this sacrifice to readability is actually worth it. – Mark Biek Oct 13 '09 at 15:13

It's called "ternary operator" because it has three operands. :)

Replacing regular ifs with it will not speed your code up. I'd expect the opposite, but the differences would be hardly measurable. It also makes your code less readable.

share|improve this answer

Why ?: should be faster than plain if...else? First: the gain (if any) is negligible. Second: there is no gain. Running the following code does not show any performance gain (on my system the if...else version is even quicker).

$start = microtime(true);
for ($n = 1; $n < 10000000; ++$n)
    if (($n & 1) == 1)
        $odd = true;
    else
        $odd = false;
$elapsed = microtime(true) - $start;

echo "Using  if  needs $elapsed sec\n";

$start = microtime(true);
for ($n = 1; $n < 10000000; ++$n)
    $odd = (($n & 1) == 1) ? true : false;
$elapsed = microtime(true) - $start;

echo "Using  ?:  needs $elapsed sec\n";
share|improve this answer

If these are only ever used in a statement context, you can use a dummy value for the else expression:

($this->left_eye_sph >= 0) ? $this->transpose_left_eye() : 0

I forgot what PHP uses for null/nothing/None - use that.

share|improve this answer

Dotty, it doesn't take very long at all for a lexer to pass over the extra white space, or to parse the "if()" versus ":".

Not only that, I think (I could be wrong) the PHP isn't usually parsed each time it is executed, so it really shouldn't make a difference.

share|improve this answer

You can also do this if you use PHP 5.3.0:

$result = ($this->left_eye_sph < 0) ?: $this->transpose_left_eye();
share|improve this answer

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