Sha256: 0dc45ada885824001685c2d7a4938fadf8718d1470bc4cbbd5e706e2ad8d8608

Contents?: true

Size: 684 Bytes

Versions: 127

Compression:

Stored size: 684 Bytes

Contents

<?php

function rebase(int $fromBase, array $digits, int $toBase)
{
    if (empty($digits) || $digits[0] == 0 || $fromBase <= 1 || $toBase <= 1) {
        return null;
    }

    $decTotal = 0;
    $ordered = array_reverse($digits);
    for ($i = 0; $i < count($digits); $i++) {
        $decTotal += $ordered[$i] * pow($fromBase, $i);
        if ($ordered[$i] >= $fromBase || $ordered[$i] < 0) {
            return null;
        }
    }

    $newArr = [];
    while ($decTotal >= $toBase) {
        $remainder = $decTotal % $toBase;
        $newArr[] = $remainder;
        $decTotal = floor($decTotal / $toBase);
    }
    $newArr[] = $decTotal;

    return array_reverse($newArr);
}

Version data entries

127 entries across 127 versions & 1 rubygems

Version Path
trackler-2.2.1.139 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.138 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.137 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.136 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.135 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.134 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.133 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.132 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.131 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.130 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.129 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.128 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.127 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.126 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.125 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.124 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.123 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.122 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.121 tracks/php/exercises/all-your-base/example.php
trackler-2.2.1.120 tracks/php/exercises/all-your-base/example.php