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 namespace Genex\Element\Cls; use Genex\Log, Genex\Element\Cls, Genex\Element\Varia..
Decoded Output download
<?php
namespace Genex\Element\Cls;
use Genex\Log,
Genex\Element\Cls,
Genex\Element\Variable;
class Property extends \ReflectionProperty {
use \Genex\Stubs;
public $cls;
public $variable;
public function __construct(Cls $class, $name) {
$this->cls = $class;
parent::__construct($this->cls->name, $name);
$this->variable = new Variable();
Log::debug("Propery $this created");
}
public function __toString() {
return $this->cls->name."::\$".$this->name;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Genex\Element\Cls;
use Genex\Log,
Genex\Element\Cls,
Genex\Element\Variable;
class Property extends \ReflectionProperty {
use \Genex\Stubs;
public $cls;
public $variable;
public function __construct(Cls $class, $name) {
$this->cls = $class;
parent::__construct($this->cls->name, $name);
$this->variable = new Variable();
Log::debug("Propery $this created");
}
public function __toString() {
return $this->cls->name."::\$".$this->name;
}
}
Function Calls
None |
Stats
MD5 | 2f32cb6801e9b60dd5f12228448ecf59 |
Eval Count | 0 |
Decode Time | 124 ms |