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 $array = [1, 2]; list($a, &$b) = $array; $parts = explode( ",", implode( ..

Decoded Output download

<?php

$array = [1, 2];
list($a, &$b) = $array;

$parts = explode(
    ",",
    implode(
        ",",
        ["a", "b", "c"],
    ),
);

function h($cnt)
{
    return str_repeat(
        <<<HERE
    123 {$cnt}
    HERE
        . chr(123)
,
        intval($cnt)
    );
}

function n($cnt)
{
    return str_repeat(
        <<<'NOW'
    123 {$cnt}
    NOW
        . chr(123)
,
        intval($cnt)
    );
}

echo 'end';
 ?>

Did this file decode correctly?

Original Code

<?php

$array = [1, 2];
list($a, &$b) = $array;

$parts = explode(
    ",",
    implode(
        ",",
        ["a", "b", "c"],
    ),
);

function h($cnt)
{
    return str_repeat(
        <<<HERE
    123 {$cnt}
    HERE
        . chr(123)
,
        intval($cnt)
    );
}

function n($cnt)
{
    return str_repeat(
        <<<'NOW'
    123 {$cnt}
    NOW
        . chr(123)
,
        intval($cnt)
    );
}

echo 'end';

Function Calls

None

Variables

None

Stats

MD5 60de5dfaf09d1b4be825d3c383cc740e
Eval Count 0
Decode Time 103 ms