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 [ [ 5.2, [3, 2, 4, 5, 6], ..

Decoded Output download

<?php

declare(strict_types=1);

return [
    [
        5.2,
        [3, 2, 4, 5, 6],
        [9, 7, 12, 15, 17],
    ],
    [
        16.633125,
        [2, 7, 8, 3, 4, 1, 6, 5],
        [22.9, 33.49, 34.5, 27.61, 19.5, 10.11, 37.9, 31.08],
    ],
    [
        '#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 [
    [
        5.2,
        [3, 2, 4, 5, 6],
        [9, 7, 12, 15, 17],
    ],
    [
        16.633125,
        [2, 7, 8, 3, 4, 1, 6, 5],
        [22.9, 33.49, 34.5, 27.61, 19.5, 10.11, 37.9, 31.08],
    ],
    [
        '#N/A',
        [1, 2, 3],
        [4, 5],
    ],
    [
        '#DIV/0!',
        [1, 2, 3],
        [4, null, null],
    ],
];

Function Calls

None

Variables

None

Stats

MD5 b6b7621b87aad5e877e56a94867f315a
Eval Count 0
Decode Time 103 ms