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); return [ [ 25.0, [5, 10, 15, 20], ..

Decoded Output download

<?php

declare(strict_types=1);

return [
    [
        25.0,
        [5, 10, 15, 20],
        [12, 9, 6, 3],
    ],
    [
        -9.0,
        [1, 2, 3, 4],
        [10, 11, 12, 13],
    ],
    [
        0.0,
        [10, 20, 30],
        [10, 20, 30],
    ],
    [
        0.048387096774,
        [2, 3, 9, 1, 8],
        [6, 5, 11, 7, 5],
    ],
    [
        2.4,
        [6, 9, 17, 20, 20, 27],
        [1, 2, 3, 4, 5, 6],
    ],
    [
        '#N/A',
        [1, 2, 3],
        [4, 5],
    ],
    [
        '#DIV/0!',
        [1, 2, 3],
        [4, null, null],
    ],
];
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

return [
    [
        25.0,
        [5, 10, 15, 20],
        [12, 9, 6, 3],
    ],
    [
        -9.0,
        [1, 2, 3, 4],
        [10, 11, 12, 13],
    ],
    [
        0.0,
        [10, 20, 30],
        [10, 20, 30],
    ],
    [
        0.048387096774,
        [2, 3, 9, 1, 8],
        [6, 5, 11, 7, 5],
    ],
    [
        2.4,
        [6, 9, 17, 20, 20, 27],
        [1, 2, 3, 4, 5, 6],
    ],
    [
        '#N/A',
        [1, 2, 3],
        [4, 5],
    ],
    [
        '#DIV/0!',
        [1, 2, 3],
        [4, null, null],
    ],
];

Function Calls

None

Variables

None

Stats

MD5 99b9aa847b27a574702c7184e675719c
Eval Count 0
Decode Time 94 ms