Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 21:34
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 parzibyte/d9c5278715bfed6f731d4f097d74ef5b to your computer and use it in GitHub Desktop.
Save parzibyte/d9c5278715bfed6f731d4f097d74ef5b to your computer and use it in GitHub Desktop.
<?php
$binario = "1101"; # El 13 en binario
# Con el 2 indicamos que la cadena que le pasamos está en base 2
$decimal = intval($binario, 2);
echo $decimal; # Imprime 13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment