Skip to content

Instantly share code, notes, and snippets.

@PJK
Created May 3, 2011 16:09
Show Gist options
  • Save PJK/953627 to your computer and use it in GitHub Desktop.
Save PJK/953627 to your computer and use it in GitHub Desktop.
<?php
//Horner, hovada.....
function decToBin($num) {
do {
$res[] = $rem = $num % 2;
$num = floor($num/2);
} while ($num);
return join("",array_reverse($res));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment