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 [ 'range does not count bool, null, text strin..
Decoded Output download
<?php
declare(strict_types=1);
return [
'range does not count bool, null, text string' => [
3,
[
// The index simulates a cell value
'0.1.A' => 'A',
'0.2.A' => 1,
'0.3.A' => true,
'0.4.A' => 2.9,
'0.5.A' => false,
'0.6.A' => '3',
'0.7.A' => '',
'0.8.A' => null,
'0.9.A' => 9,
],
],
'direct values also do not count bool, null, text string' => [
3,
// No index indicates arguments passed as literals rather than cell values
'A',
1,
true,
2.9,
false,
'3',
'',
null,
9,
],
];
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
return [
'range does not count bool, null, text string' => [
3,
[
// The index simulates a cell value
'0.1.A' => 'A',
'0.2.A' => 1,
'0.3.A' => true,
'0.4.A' => 2.9,
'0.5.A' => false,
'0.6.A' => '3',
'0.7.A' => '',
'0.8.A' => null,
'0.9.A' => 9,
],
],
'direct values also do not count bool, null, text string' => [
3,
// No index indicates arguments passed as literals rather than cell values
'A',
1,
true,
2.9,
false,
'3',
'',
null,
9,
],
];
Function Calls
None |
Stats
MD5 | fe579cc34a5019126cb70dc0096747c5 |
Eval Count | 0 |
Decode Time | 82 ms |