Skip to content

Instantly share code, notes, and snippets.

@LinuxDoku
Created October 27, 2011 14:47
Show Gist options
  • Save LinuxDoku/1319745 to your computer and use it in GitHub Desktop.
Save LinuxDoku/1319745 to your computer and use it in GitHub Desktop.
Dualzahlen zu Dezimalzahlen umrechnen
<?php
$numbers = str_split('101110111010');
$result = 0;
foreach($numbers as $number) {
$result *= 2;
$result += $numbers[array_search($number, $numbers) + 1];
}
echo $result;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment