What is += used for?

前端 未结 11 1903
醉酒成梦
醉酒成梦 2021-01-12 02:00

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 = $th         


        
11条回答
  •  不要未来只要你来
    2021-01-12 02:46

    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;
    

提交回复
热议问题