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 A { protected $protected = 1; private $private = 'a'; } class B exte..
Decoded Output download
<?php
class A {
protected $protected = 1;
private $private = 'a';
}
class B extends A {
public $protected = 2;
public $private = 'b';
}
$v = new B;
$v->protected = 3;
$v->private = 'c';
?>
Did this file decode correctly?
Original Code
<?php
class A {
protected $protected = 1;
private $private = 'a';
}
class B extends A {
public $protected = 2;
public $private = 'b';
}
$v = new B;
$v->protected = 3;
$v->private = 'c';
Function Calls
None |
Stats
MD5 | a41a534308428112cbdb01493d323506 |
Eval Count | 0 |
Decode Time | 79 ms |