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 [ [ '#VALUE!', 'ABC', ], ..

Decoded Output download

<?php

declare(strict_types=1);

return [
    [
        '#VALUE!',
        'ABC',
    ],
    [
        '#VALUE!',
        -5,
    ],
    [
        '#VALUE!',
        0,
    ],
    [
        'A',
        65,
    ],
    [
        '{',
        123,
    ],
    [
        '~',
        126,
    ],
    [
        '',
        193,
    ],
    [
        '',
        255,
    ],
    [
        '#VALUE!',
        256,
    ],
    [
        '#VALUE!', // '',
        12103,
    ],
    [
        '#VALUE!', // '',
        0x153,
    ],
    [
        '#VALUE!', // '',
        0x192,
    ],
    [
        '#VALUE!', // '',
        0x2105,
    ],
    [
        '#VALUE!', // '',
        0x2211,
    ],
    [
        '#VALUE!', // '',
        0x2020,
    ],
    'omitted argument' => ['exception'],
    'non-printable' => ["", 2],
    'bool argument' => ["", true],
    'null argument' => ['#VALUE!', null],
    'ascii 1 is 49' => ['1', 49],
    'ascii 0 is 48' => ['0', 48],
];
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

return [
    [
        '#VALUE!',
        'ABC',
    ],
    [
        '#VALUE!',
        -5,
    ],
    [
        '#VALUE!',
        0,
    ],
    [
        'A',
        65,
    ],
    [
        '{',
        123,
    ],
    [
        '~',
        126,
    ],
    [
        '',
        193,
    ],
    [
        '',
        255,
    ],
    [
        '#VALUE!',
        256,
    ],
    [
        '#VALUE!', // '',
        12103,
    ],
    [
        '#VALUE!', // '',
        0x153,
    ],
    [
        '#VALUE!', // '',
        0x192,
    ],
    [
        '#VALUE!', // '',
        0x2105,
    ],
    [
        '#VALUE!', // '',
        0x2211,
    ],
    [
        '#VALUE!', // '',
        0x2020,
    ],
    'omitted argument' => ['exception'],
    'non-printable' => ["\x02", 2],
    'bool argument' => ["\x01", true],
    'null argument' => ['#VALUE!', null],
    'ascii 1 is 49' => ['1', 49],
    'ascii 0 is 48' => ['0', 48],
];

Function Calls

None

Variables

None

Stats

MD5 74c39271b1a8458b667cdb670c48d8d5
Eval Count 0
Decode Time 88 ms