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, price, redemption, basis, result..

Decoded Output download

<?php

declare(strict_types=1);

// settlement, maturity, price, redemption, basis, result

return [
    [
        0.052420213,
        '2007-01-25',
        '2007-06-15',
        97.974999999999994,
        100,
        1,
    ],
    [
        0.01,
        '2010-04-01',
        '2015-03-31',
        95,
        100,
    ],
    [
        0.01,
        '2010-04-01',
        '2015-03-31',
        95,
        100,
        null,
    ],
    [
        '#NUM!',
        '2010-04-01',
        '2015-03-31',
        0,
        100,
    ],
    [
        '#VALUE!',
        '2010-04-01',
        '2015-03-31',
        'ABC',
        100,
    ],
    [
        '#VALUE!',
        'Invalid Date',
        '2007-06-15',
        97.974999999999994,
        100,
        1,
    ],
];
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

// settlement, maturity, price, redemption, basis, result

return [
    [
        0.052420213,
        '2007-01-25',
        '2007-06-15',
        97.974999999999994,
        100,
        1,
    ],
    [
        0.01,
        '2010-04-01',
        '2015-03-31',
        95,
        100,
    ],
    [
        0.01,
        '2010-04-01',
        '2015-03-31',
        95,
        100,
        null,
    ],
    [
        '#NUM!',
        '2010-04-01',
        '2015-03-31',
        0,
        100,
    ],
    [
        '#VALUE!',
        '2010-04-01',
        '2015-03-31',
        'ABC',
        100,
    ],
    [
        '#VALUE!',
        'Invalid Date',
        '2007-06-15',
        97.974999999999994,
        100,
        1,
    ],
];

Function Calls

None

Variables

None

Stats

MD5 2852e2a0b6dbceb6b2eedf6c7a5c073d
Eval Count 0
Decode Time 76 ms