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 [ 'no arguments' => ['exception'], 'one ar..

Decoded Output download

<?php

declare(strict_types=1);

return [
    'no arguments' => ['exception'],
    'one argument' => ['exception', 'ABC'],
    ['#VALUE!', 'ABC', 'DEF'],
    ['ABCABCABC', 'ABC', 3],
    ['ABCABC', 'ABC', 2.2],
    ['', 'ABC', 0],
    ['TRUETRUE', true, 2],
    ['111', 1, 3],
    ['  ', ' ', 2],
    ['#VALUE!', 'ABC', -1],
    'result too long' => ['#VALUE!', 'A', 32768],
    'result just fits' => [str_repeat('A', 32767), 'A', 32767],
    'propagate NUM' => ['#NUM!', '=SQRT(-1)', 5],
    'propagate REF' => ['#REF!', '=sheet99!A1', 5],
];
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

return [
    'no arguments' => ['exception'],
    'one argument' => ['exception', 'ABC'],
    ['#VALUE!', 'ABC', 'DEF'],
    ['ABCABCABC', 'ABC', 3],
    ['ABCABC', 'ABC', 2.2],
    ['', 'ABC', 0],
    ['TRUETRUE', true, 2],
    ['111', 1, 3],
    ['  ', ' ', 2],
    ['#VALUE!', 'ABC', -1],
    'result too long' => ['#VALUE!', 'A', 32768],
    'result just fits' => [str_repeat('A', 32767), 'A', 32767],
    'propagate NUM' => ['#NUM!', '=SQRT(-1)', 5],
    'propagate REF' => ['#REF!', '=sheet99!A1', 5],
];

Function Calls

None

Variables

None

Stats

MD5 1a31c2c4cf69d854c92b01d813127711
Eval Count 0
Decode Time 81 ms