What is += used for?

前端 未结 11 1931
醉酒成梦
醉酒成梦 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:26

    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.

提交回复
热议问题