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 [ [ 'HELLO', 'HELLO ', ..

Decoded Output download

<?php

declare(strict_types=1);

return [
    [
        'HELLO',
        'HELLO    ',
    ],
    [
        'HELLO',
        '    HELLO',
    ],
    [
        'HELLO',
        '   HELLO      ',
    ],
    [
        '	HELLO',
        '	HELLO',
    ],
    [
        'HELLO WORLD',
        'HELLO    WORLD',
    ],
    [
        'TRUE',
        true,
    ],
    [
        null,
        null,
    ],
    'no arguments' => ['exception'],
];
 ?>

Did this file decode correctly?

Original Code

<?php

declare(strict_types=1);

return [
    [
        'HELLO',
        'HELLO    ',
    ],
    [
        'HELLO',
        '    HELLO',
    ],
    [
        'HELLO',
        '   HELLO      ',
    ],
    [
        '	HELLO',
        '	HELLO',
    ],
    [
        'HELLO WORLD',
        'HELLO    WORLD',
    ],
    [
        'TRUE',
        true,
    ],
    [
        null,
        null,
    ],
    'no arguments' => ['exception'],
];

Function Calls

None

Variables

None

Stats

MD5 197cfa819c595db85f666a13bf2f093f
Eval Count 0
Decode Time 96 ms