Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php declare(strict_types=1); // fractional_dollar, fraction, result return [ [ ..

Decoded Output download

<?php

declare(strict_types=1);

// fractional_dollar, fraction, result

return [
    [
        2.5,
        1.6,
        4,
    ],
    [
        -2.5,
        -1.6,
        4,
    ],
    [
        1.125,
        1.02,
        16,
    ],
    [
        1.3125,
        1.1000000000000001,
        32,
    ],
    [
        1.0625,
        1.01,
        16,
    ],
    [
        1.625,
        1.1000000000000001,
        16,
    ],
    [
        1.09375,
        1.03,
        32,
    ],
    [
        1.9375,
        1.3,
        32,
    ],
    [
        1.375,
        1.1200000000000001,
        32,
    ],
    [
        '#VALUE!',
        'Not A Number',
        0,
    ],
    [
        '#DIV/0!',
        1.2344999999999999,
        0,
    ],
    [
        '#NUM!',
        1.2344999999999999,
        -2,
    ],
];
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

// fractional_dollar, fraction, result

return [
    [
        2.5,
        1.6,
        4,
    ],
    [
        -2.5,
        -1.6,
        4,
    ],
    [
        1.125,
        1.02,
        16,
    ],
    [
        1.3125,
        1.1000000000000001,
        32,
    ],
    [
        1.0625,
        1.01,
        16,
    ],
    [
        1.625,
        1.1000000000000001,
        16,
    ],
    [
        1.09375,
        1.03,
        32,
    ],
    [
        1.9375,
        1.3,
        32,
    ],
    [
        1.375,
        1.1200000000000001,
        32,
    ],
    [
        '#VALUE!',
        'Not A Number',
        0,
    ],
    [
        '#DIV/0!',
        1.2344999999999999,
        0,
    ],
    [
        '#NUM!',
        1.2344999999999999,
        -2,
    ],
];

Function Calls

None

Variables

None

Stats

MD5 6cc9850f7f6bb4f188255c71eeb2b00d
Eval Count 0
Decode Time 82 ms