Skip to content

Instantly share code, notes, and snippets.

@geekcom
Last active April 21, 2017 15:43
Show Gist options
  • Save geekcom/64005a7008fa4c664c559e27dc7a8fed to your computer and use it in GitHub Desktop.
Save geekcom/64005a7008fa4c664c559e27dc7a8fed to your computer and use it in GitHub Desktop.
short form assign PHP
SHORT FORM O MESMO QUE
$a += $b $a = $a + $b //adição
$a -= $b $a = $a - $b //subtração
$a *= $b $a = $a * $b //multiplicação
$a /= $b $a = $a / $b //divisão
$a %= $b $a = $a % $b //módulo
$a .= $b $a = $a . $b //concatenação
$a &= $b $a = $a & $b //Bitwise AND / &
$a |= $b $a = $a | $b //Bitwise OR / |
$a ^= $b $a = $a ^ $b //Bitwise XOR / ^
$a <<= $b $a = $a << $b //mover a esquerda
$a >>= $b $a = $a >> $b //mover a direita
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment