Skip to content

Instantly share code, notes, and snippets.

@LinuxDoku
Created October 28, 2011 12:03
Show Gist options
  • Save LinuxDoku/1322126 to your computer and use it in GitHub Desktop.
Save LinuxDoku/1322126 to your computer and use it in GitHub Desktop.
Dezimal zu Dual
<?php
$number = 141;
$result = '';
while($number != 0) {
$result .= $number % 2;
$number = floor($number / 2);
}
echo strrev($result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment