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); // Settlement, Maturity, Investment, Redemption, Basis, R..

Decoded Output download

<?php

declare(strict_types=1);

// Settlement, Maturity, Investment, Redemption, Basis, Result

return [
    [
        0.05768,
        '2008-02-15',
        '2008-05-15',
        1000000,
        1014420,
        2,
    ],
    [
        0.225,
        '2005-04-01',
        '2010-03-31',
        1000,
        2125,
    ],
    [
        0.225,
        '2005-04-01',
        '2010-03-31',
        1000,
        2125,
        null,
    ],
    [
        '#VALUE!',
        '2008-02-15',
        '2008-05-15',
        1000000,
        1014420,
        'ABC',
    ],
    [
        '#NUM!',
        '2008-02-15',
        '2008-05-15',
        1000000,
        -1014420,
        2,
    ],
    [
        '#VALUE!',
        'Invalid Date',
        '2008-05-15',
        1000000,
        1014420,
        2,
    ],
];
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

// Settlement, Maturity, Investment, Redemption, Basis, Result

return [
    [
        0.05768,
        '2008-02-15',
        '2008-05-15',
        1000000,
        1014420,
        2,
    ],
    [
        0.225,
        '2005-04-01',
        '2010-03-31',
        1000,
        2125,
    ],
    [
        0.225,
        '2005-04-01',
        '2010-03-31',
        1000,
        2125,
        null,
    ],
    [
        '#VALUE!',
        '2008-02-15',
        '2008-05-15',
        1000000,
        1014420,
        'ABC',
    ],
    [
        '#NUM!',
        '2008-02-15',
        '2008-05-15',
        1000000,
        -1014420,
        2,
    ],
    [
        '#VALUE!',
        'Invalid Date',
        '2008-05-15',
        1000000,
        1014420,
        2,
    ],
];

Function Calls

None

Variables

None

Stats

MD5 b6677031e135fc008a1654841701cffb
Eval Count 0
Decode Time 79 ms