Skip to content

Instantly share code, notes, and snippets.

@jonataa
Created May 11, 2014 01:28
Show Gist options
  • Save jonataa/cbb6ace1d2e47dbf47b1 to your computer and use it in GitHub Desktop.
Save jonataa/cbb6ace1d2e47dbf47b1 to your computer and use it in GitHub Desktop.
Tipos Numéricos
<?php
$a = 50; // decimal
$b = -123; // número negativo
$c = 0123; // octal (83 decimal)
$d = 0x1A; // número hexadecimal (26 decimal)
$e = 1.234; // ponto flutuante
$f = 1.2e3; // 1,2 x 1000 = 1200
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment