Search code examples
phpsearchsearch-engineoperation

How to perform a search using characters "+ - =" .etc


I am am trying to remember the meaning of += in the following:

$total += cumumalitive_norm($x, $mean, $sd);

I know this is simple just not 100% sure if I'm right. I am presuming it means

$total = $total + cumumalitive_norm($x, $mean, $sd);

After trying to use Google to search for an answer then this website, I have released that the characters "+ - =" .etc don't respond well in a search engine.

Is there a hack I can do to return better results? I was googling "php +=".

Regards


Solution

  • For the Google search you could type out plus and equals. Example: php plus equals.

    And yes that is what the += means, but I only believe it works for numbers.