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 [ [ 1, null, ], [ ..
Decoded Output download
<?php
declare(strict_types=1);
return [
[
1,
null,
],
[
10,
'C10',
],
[
[[10], [11], [12]],
'C10:C12',
],
[
[[10], [11], [12]],
'C10:D12',
],
[
4,
[
4 => ['B' => 'B5', 'C' => 'C5', 'D' => 'D5'],
5 => ['B' => 'B5', 'C' => 'C5', 'D' => 'D5'],
],
],
[
[[10], [11], [12]],
'Sheet1!C10:C12',
],
[
[[10], [11], [12]],
'"WorkSheet #1"!C10:C12',
],
[1, []],
];
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
return [
[
1,
null,
],
[
10,
'C10',
],
[
[[10], [11], [12]],
'C10:C12',
],
[
[[10], [11], [12]],
'C10:D12',
],
[
4,
[
4 => ['B' => 'B5', 'C' => 'C5', 'D' => 'D5'],
5 => ['B' => 'B5', 'C' => 'C5', 'D' => 'D5'],
],
],
[
[[10], [11], [12]],
'Sheet1!C10:C12',
],
[
[[10], [11], [12]],
'"WorkSheet #1"!C10:C12',
],
[1, []],
];
Function Calls
None |
Stats
MD5 | cd817d9efbf92ae014d0fe7bcc8771d9 |
Eval Count | 0 |
Decode Time | 103 ms |