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 function a(&$a = 19) { $a .= 1; } $b = 6; a($b); ..

Decoded Output download

<?php 
    function a(&$a = 19) 
    { 
        $a .= 1; 
    } 
    $b = 6; 
    a($b); 
    echo $b++; 
?>

Did this file decode correctly?

Original Code

<?php
    function a(&$a = 19)
    {
        $a .= 1;
    }
    $b = 6;
    a($b);
    echo $b++;
?>

Function Calls

a 1

Variables

$a 7
$b 7

Stats

MD5 bd7e6fdb193a68f0b83ec71eb2632696
Eval Count 0
Decode Time 102 ms