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 [ [ true, null, ], [ ..
Decoded Output download
<?php
declare(strict_types=1);
return [
[
true,
null,
],
[
true,
-1,
],
[
true,
0,
],
[
true,
9,
],
[
true,
1.5,
],
[
false,
'',
],
[
false,
'-1',
],
[
false,
'2',
],
[
false,
'-1.5',
],
[
false,
'ABC',
],
[
true,
'#VALUE!',
],
[
true,
'#N/A',
],
[
false,
'TRUE',
],
[
true,
true,
],
[
true,
false,
],
];
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
return [
[
true,
null,
],
[
true,
-1,
],
[
true,
0,
],
[
true,
9,
],
[
true,
1.5,
],
[
false,
'',
],
[
false,
'-1',
],
[
false,
'2',
],
[
false,
'-1.5',
],
[
false,
'ABC',
],
[
true,
'#VALUE!',
],
[
true,
'#N/A',
],
[
false,
'TRUE',
],
[
true,
true,
],
[
true,
false,
],
];
Function Calls
None |
Stats
MD5 | 5411d2613b05a33854cc6037d1296c1c |
Eval Count | 0 |
Decode Time | 91 ms |