tags:

views:

433

answers:

9

I think this is a dumb question but I could not find it on php. Why is a + with the = in the following code:

function calculateRanking()
{
    $created = $this->getCreated();

    $diff = $this->getTimeDifference($created, date('F d, Y h:i:s A'));

    $time = $diff['days'] * 24;
    $time += $diff['hours'];
    $time += ($diff['minutes'] / 60);
    $time += (($diff['seconds'] / 60)/60);

    $base = $time + 2;        

    $this->ranking = ($this->points - 1) / pow($base, 1.5);

    $this->save();
}

Is this so $time has all those values or rather it is adding all the values to $time?

Thanks

+9  A: 

$time += $diff['hours'];

is the same as saying

$time = $time + $diff['hours'];

why do other people's comments get posted up higher than mine, even though I answered first? Kinda hard to get credit for a correct answer if mine is listed after other people with 1000 times the reputation that I do, even though mine was correct and should be credited with the correct answer.
If an answer is accepted, it will show first. Past that users will see answers based on the sort order they have selected (oldest|newest|votes). I believe sorting by votes is the default. Your answer is oldest, and ok, but Adam's is more clear.
Zoredache
Sorry. My answer was always below your even when we had the same vote value. Someone voted my answer up just one above yours and only then was mine listed first. Later the question asker accepted my answer, which puts it at the top.
Adam Davis
My answers don't get any special treatment due to my reputation. I suspect the reason people liked mine above yours was I took out all the extraneous stuff ($, [], etc) and focused on just the primary issue. My answer isn't better, but it did appeal to more people.
Adam Davis
+28  A: 

It's adding all those values to time.

something += somethingelse

is a shortcut for

something = something + somethingelse
Adam Davis
PLEASE KEEP IN MIND: This doesn't work for strings. To concatenate strings, use .= ... This has driven me nuts!
Nick Stinemates
That's true, but that's because period is the concatenation operator. + allows concatenation for convenience, but it's really period.
Adam Davis
why do other people's comments get posted up higher than mine, even though I answered first? Kinda hard to get credit for a correct answer if mine is listed after other people with 1000 times the reputation that I do, even though mine was correct and should be credited with the correct answer.
@dominicminicoopers - Sometimes that just how it goes. Some people might just like the way he phrased it better. He formatted his code as `code`, so maybe people just like that. FWIW, Paul Tomblin (15.4k rep) answered before Adam and he only got 4 up votes. He provided historical context, too.
Tyson
+6  A: 

a += 2; is the equivalent of a = a + 2;

At one time with some languages (especially very old C compilers), the compiler produced better code with the first option. It sticks around now because it's a common idiom and people used to it think it's clearer.

Paul Tomblin
It's faster written, expecially with long variable names. That's why it's still used. Same applies for i++, which is again a shortcut for i+=1. Only one character saved, but much easier to write because there are only two (instead of three) DIFFERENT characters.
bothie
I use it, and I've never thought about it before, but it seems like "faster to type" is sometimes a bad optimization to make - it's a slippery slope back to one letter variable names and other techniques of the last century.
Paul Tomblin
Thing is, "a = a + 1;" vs. "a += 1;" or "++a;" matters little. However, "long_and_descriptive_array_name [descriptive_function(other_variable)] += 1;" is a win.
David Thornley
'faster to type' generally implies 'less likly to have a typo in the code somewhere'. When dealing with PHP, this is especially important.
Sean McSomething
+2  A: 

x += 10 is simply a shorter way to write x = x + 10.

In this case, the code is finding the time difference in hours from a time difference structure.

Jesse Weigert
+2  A: 

Shortcut operator for $val = $val + $otherval.

This only works on numeric values

John T
+2  A: 

Let's replace a few things to make it a bit easier to understand.

The += is just the same as below:

$time = $diff['days'] * 24;
$time = $time + $diff['hours'];
$time = $time + ($diff['minutes'] / 60);
$time = $time + (($diff['seconds'] / 60)/60);
MJ
+3  A: 

There are lots of these shorthand operators in C, C++ in other modern languages.

a -= b;   // a = a - b;
a *= b;   // a = a * b;
a &= b;   // a = a & b;

etc., etc., etc.

Die in Sente
+1  A: 

Also, "a += b" is an expression who's value can be used again immediately,

(((((a += b) *= c) += d) * e) += f);

is a lot less typing than

a = a + b;
a = a * c;
a = a + d;
a = a * e;
a = a + f;
Die in Sente
It's not really a lot less typing in your particular example. However, it certainly is a lot less readable.
Konrad Rudolph
But a lot more typing that a = (((((a + b) * c) + d) * e) + f)
Paul Tomblin
Don't write code like this you can't maintain or debug it. Keep it simple, your 5 lines of code will win in the long run... (and execution time will be the same anyway)
Johan
@Johan: 'win' what? Of course, assuming a reasonable compiler -- which is not always true! -- the two versions will generate the same execution code. Therefore it's a matter of style, not substance. If someone in an interview claimed they couldn't maintain or debug either one I wouldn't hire them.
Die in Sente
+2  A: 

I just wanted to add that this information is, indeed, on PHP's website in the section on operators, or more specifically, assignment operators.

Peter Bailey
searching the language docs for the win!
crashmstr