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 [ [ 2, 10, 7, 9, 27, 2, ],..
Decoded Output download
<?php
declare(strict_types=1);
return [
[
2,
10, 7, 9, 27, 2,
],
[
-7,
10, '-9', -7, '17', 2,
],
[
0,
10, 7, 9, '17', 2,
],
[
1,
10, true, 9, 2,
],
[
0,
null, true, 2, false,
],
[
0,
null, 'STRING', '', 'xl95',
],
[
0,
null, null, null, null,
],
'error among arguments' => [
'#DIV/0!',
1, 3, '=5/0', -2,
],
];
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
return [
[
2,
10, 7, 9, 27, 2,
],
[
-7,
10, '-9', -7, '17', 2,
],
[
0,
10, 7, 9, '17', 2,
],
[
1,
10, true, 9, 2,
],
[
0,
null, true, 2, false,
],
[
0,
null, 'STRING', '', 'xl95',
],
[
0,
null, null, null, null,
],
'error among arguments' => [
'#DIV/0!',
1, 3, '=5/0', -2,
],
];
Function Calls
None |
Stats
MD5 | e1efb1b56a97cfed9eb8638f8ac8aa47 |
Eval Count | 0 |
Decode Time | 80 ms |