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 [ [50, 5, 15, 30], [52, 5, 15, 30, 2], ..

Decoded Output download

<?php

declare(strict_types=1);

return [
    [50, 5, 15, 30],
    [52, 5, 15, 30, 2],
    [53.1, 5.7, 15, 30, 2.4],
    [52.1, 5.7, '14', 30, 2.4],
    [52.2, 5.7, '14.1', 30, 2.4],
    [38.1, 5.7, 'X', 30, 2.4], // error if entered in formula, but not in cell
    [38.1, 5.7, '', 30, 2.4], // error if entered in formula, but not in cell
    [38.1, 5.7, null, 30, 2.4],
    [38.1, 5.7, false, 30, 2.4],
    [39.1, 5.7, true, 30, 2.4],
];
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

return [
    [50, 5, 15, 30],
    [52, 5, 15, 30, 2],
    [53.1, 5.7, 15, 30, 2.4],
    [52.1, 5.7, '14', 30, 2.4],
    [52.2, 5.7, '14.1', 30, 2.4],
    [38.1, 5.7, 'X', 30, 2.4], // error if entered in formula, but not in cell
    [38.1, 5.7, '', 30, 2.4], // error if entered in formula, but not in cell
    [38.1, 5.7, null, 30, 2.4],
    [38.1, 5.7, false, 30, 2.4],
    [39.1, 5.7, true, 30, 2.4],
];

Function Calls

None

Variables

None

Stats

MD5 7c8c7f2f547cec4ca8f639222b29ccbb
Eval Count 0
Decode Time 93 ms