Skip to content

Instantly share code, notes, and snippets.

@maykonmeier
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maykonmeier/46f0e27cfe7bf457230b to your computer and use it in GitHub Desktop.
Save maykonmeier/46f0e27cfe7bf457230b to your computer and use it in GitHub Desktop.
Operadores aritméticos
<?php
// Soma
$a = 1 + 2;
$total = $a - 1;
// Total is 2
// Negacão
$b = -$a;
// Multiplicação
$c = $a * 2;
// Módulo e divisão
$d = $c % ($a / 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment